From eec42a81e93c206b025c4b21812979c68c41ff2f Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期三, 22 五月 2024 18:08:15 +0800
Subject: [PATCH] 完成人员明细初始化

---
 src/components/view/person-manage.vue |   25 +++++++++++++++++--------
 1 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/src/components/view/person-manage.vue b/src/components/view/person-manage.vue
index 2859d05..43f52d3 100644
--- a/src/components/view/person-manage.vue
+++ b/src/components/view/person-manage.vue
@@ -174,8 +174,8 @@
           <el-button size="small" @click="refresh()">閲� 缃�</el-button>
           <el-button size="small" type="primary" @click="refreshTable()">鏌� 璇�</el-button>
         </div>
-        <div class="search_thing">
-          <el-button size="small" type="primary" @click="openthirdParty">鑾峰彇涓夋柟浜哄憳</el-button>
+        <div class="search_thing" style="display: flex;justify-content: right;margin-right: 10px;">
+          <el-button size="small" type="primary" @click="openthirdParty" v-if="addUserPower">鑾峰彇涓夋柟浜哄憳</el-button>
           <el-button size="small" type="primary" @click="opeaAdd" v-if="addPower">鏂板鐢ㄦ埛</el-button>
         </div>
       </div>
@@ -184,7 +184,7 @@
           :componentData="componentData" :key="upIndex" />
       </div>
     </div>
-    <el-dialog title="鏋舵瀯鏂板" :visible.sync="addDia0" width="400px">
+    <el-dialog title="鏋舵瀯鏂板" :visible.sync="addDia" width="400px">
       <div class="body">
         <el-row style="line-height: 50px;">
           <el-col :span="6" style="text-align: right;">
@@ -196,7 +196,7 @@
         </el-row>
       </div>
       <span slot="footer" class="dialog-footer">
-        <el-button @click="addDia0 = false">鍙� 娑�</el-button>
+        <el-button @click="addDia = false">鍙� 娑�</el-button>
         <el-button type="primary" @click="addStandardTree" :loading="addLoad">纭� 瀹�</el-button>
       </span>
     </el-dialog>
@@ -204,7 +204,7 @@
       <div class="body">
         <el-row>
           <el-col :span="9" style="height: 70vh;overflow: hidden;">
-            <el-input placeholder="杈撳叆鍏抽敭瀛楄繘琛岃繃婊�" v-model="search2" size="small" style="width: 90%;padding: 0 5% 10px 5%;"
+            <el-input placeholder="杈撳叆鍏抽敭瀛楁悳绱�" v-model="search2" size="small" style="width: 90%;padding: 0 5% 10px 5%;"
               clearable @blur="searchFilter2" @clear="searchFilter2" @keyup.enter.native="searchFilter2()">
             </el-input>
             <el-tree :data="datathirdParty" node-key="id" :props="defaultProps" @node-click="nodeClick2"
@@ -344,6 +344,7 @@
         upIndex: 0,
         addDia: false,
         addPower: true,
+        addUserPower: true,
         delStandardTree: true,
         addDia0: false,
         addOb: {
@@ -464,6 +465,7 @@
         let power = JSON.parse(sessionStorage.getItem('power'))
         let up = false
         let add = false
+        let addUserPower = false
         let delStandardTree = false
         for (var i = 0; i < power.length; i++) {
           if (power[i].menuMethod == 'updateUser') {
@@ -475,12 +477,16 @@
           if (power[i].menuMethod == 'delDepartment') {
             delStandardTree = true
           }
+          if (power[i].menuMethod == 'selectCompaniesList') {
+            addUserPower = true
+          }
         }
         if (!up) {
           this.componentData.do.splice(0, 1)
         }
         this.delStandardTree = delStandardTree
         this.addPower = add
+        this.addUserPower = addUserPower
       },
       handleAdd() {
         if (this.addOb.fatherId||this.addOb.name=='鍏ㄩ儴') {
@@ -624,11 +630,11 @@
         }
         let arr = []
         this.currentCompaniesList.forEach(b=>{
-          this.companiesList.forEach(a=>{
+          /* this.companiesList.forEach(a=>{
             if(a.companyId===b){
               console.log(a)
             }
-          })
+          }) */
           let obj = this.companiesList.find(a=>a.companyId==b)
           arr.push(obj)
           })
@@ -646,10 +652,13 @@
             return
           }
           this.$message.success('鎿嶄綔鎴愬姛')
-          this.refresh()
           this.multipleSelection = []
           this.$refs.personTable.clearSelection()
           this.addthirdParty = false
+          this.addLoad = false
+          this.personList = []
+          this.userSearch2 = ''
+          this.refresh()
         }).catch(e => {
           this.addthirdParty = false
           this.addLoad = false

--
Gitblit v1.9.3