|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
<div class="table-page-search-wrapper"> |
|
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
|
|
|
|
<a-row :gutter="24"> |
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24" :hidden="show"> |
|
|
|
|
<a-form-item label="项目部"> |
|
|
|
|
<a-select v-model="queryParam.departId" placeholder="请输入项目部" @mouseenter="getUnit" > |
|
|
|
|
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.unit">{{item.unit_dictText}}</a-select-option> |
|
|
|
@ -217,13 +217,13 @@
|
|
|
|
|
libraryNames:[], |
|
|
|
|
Listmaterials:[], |
|
|
|
|
queryParamsUntil:[], |
|
|
|
|
show: true |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
|
|
|
|
|
this.getSuperFieldList(); |
|
|
|
|
this.initDictConfig(); |
|
|
|
|
|
|
|
|
|
this.showDepart(); |
|
|
|
|
this.getSuperFieldList(); |
|
|
|
|
this.initDictConfig(); |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
importExcelUrl: function(){ |
|
|
|
@ -272,13 +272,22 @@
|
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
//是否隐藏项目部查询 |
|
|
|
|
showDepart(){ |
|
|
|
|
let ue= sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
let res=JSON.parse(ue); |
|
|
|
|
if(res.realname == "管理员"){ |
|
|
|
|
this.show = false; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
//获取部门ID |
|
|
|
|
section(){ |
|
|
|
|
let ue= sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
let res=JSON.parse(ue); |
|
|
|
|
// console.log("23r4qwerfasdfgzsfh",res) |
|
|
|
|
console.log("23r4qwerfasdfgzsfh",res) |
|
|
|
|
if(res.realname !== "管理员"){ |
|
|
|
|
this.queryParam.sysOrgCode = res.departIds; |
|
|
|
|
this.queryParam.departIds = res.departIds; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|