From 0e44d6979f9637e9e281e680e5f81294d302bf18 Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 3 Apr 2024 15:31:42 +0800 Subject: [PATCH] =?UTF-8?q?14905=20=E6=B2=A1=E6=9C=89=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E4=BD=9C=E4=B8=9A=E8=B4=9F=E8=B4=A3=E4=BA=BA=E5=8D=95=E4=BD=8D?= =?UTF-8?q?=20=E5=B0=B1=E5=8F=AF=E4=BB=A5=E9=80=89=E6=8B=A9=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A=E8=B4=9F=E8=B4=A3=E4=BA=BA=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hotwork-apply/hotwork-apply-detail.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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();//强制刷新 },