diff --git a/pages/application/hotwork_cfd/hotwork-apply/hotwork-apply-detail.vue b/pages/application/hotwork_cfd/hotwork-apply/hotwork-apply-detail.vue index 4a50d45..124a953 100644 --- a/pages/application/hotwork_cfd/hotwork-apply/hotwork-apply-detail.vue +++ b/pages/application/hotwork_cfd/hotwork-apply/hotwork-apply-detail.vue @@ -352,8 +352,8 @@ 项目主管部门负责人 - + {{ pd.BELONGING_USER_NAME ? pd.BELONGING_USER_NAME : '请选择' }} @@ -746,6 +746,7 @@ export default { }, data() { return { + xiangMuBuMenUserList:[], baseImgPath: baseImgPath, buttonloading: false, isUps: false, @@ -1415,7 +1416,7 @@ export default { } break case 'xiangMu': - if (this.confirmUserList.length === 0) { + if (this.xiangMuBuMenUserList.length === 0) { uni.showToast({ icon: 'none', title: '请先选择项目主管部门负责人', @@ -1544,7 +1545,7 @@ export default { this.pd.BELONGING_USER_ID = '' this.pd.BELONGING_USER_NAME = '' this.$forceUpdate();//强制刷新 - this.getUserList(e[0].id, 'confirmUserList'); + this.getUserList(e[0].id, 'xiangMuBuMenUserList'); }, // 取消回调事件 xiangMuBuMenCancel(e) { @@ -1552,8 +1553,8 @@ export default { }, xiangMuBuMenUserConfirm(e) { this.xiangMuFuZheRenIndex = e.detail.value; - this.pd.BELONGING_USER_ID = this.confirmUserList[this.xiangMuFuZheRenIndex].USER_ID; - this.pd.BELONGING_USER_NAME = this.confirmUserList[this.xiangMuFuZheRenIndex].NAME; + this.pd.BELONGING_USER_ID = this.xiangMuBuMenUserList[this.xiangMuFuZheRenIndex].USER_ID; + this.pd.BELONGING_USER_NAME = this.xiangMuBuMenUserList[this.xiangMuFuZheRenIndex].NAME; this.$forceUpdate();//强制刷新 },