From 3937d7d68ca097f3125968d4d327fe41b8c3b48e Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 10 Mar 2025 22:07:00 +0800 Subject: [PATCH] =?UTF-8?q?3/10=20=E4=B8=8A=E8=B4=A7=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/workplace/cargowWorkplaceManage.vue | 31 +++++++++++++++++-- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/src/views/basic/workplace/cargowWorkplaceManage.vue b/src/views/basic/workplace/cargowWorkplaceManage.vue index e33556bc..2ba648cb 100644 --- a/src/views/basic/workplace/cargowWorkplaceManage.vue +++ b/src/views/basic/workplace/cargowWorkplaceManage.vue @@ -409,12 +409,21 @@ 作业模式: - + + + + + + + + + + @@ -747,6 +756,7 @@ export default { remake: null, productType:1, jobMode: 1, + isUseMinUnit: false, }, fromDeptOptions: [], invQuery: { @@ -768,7 +778,8 @@ export default { // ] }, deptCode: null, - + //控制 是否使用最小销售单元 + isDisabled: false, } }, computed: {}, @@ -1023,8 +1034,10 @@ export default { queueStatus:0, remake: null, productType:1, - jobMode:0 + jobMode:0, + isUseMinUnit: true, } + this.isDisabled = true if (this.groupData != null) { this.formData.constituencies = this.groupData.code } @@ -1173,6 +1186,9 @@ export default { } else { this.formData.chargeUser = row.chargeUser } + if (this.formData.jobMode == 0){ + this.isDisabled = true + } this.fromName = 'edit' this.invQuery.deptCode = row.deptCode getUsers(this.invQuery).then(res => { @@ -1237,6 +1253,15 @@ export default { // } // } // } + selectIsUseMinUnit() { + if (this.formData.jobMode == 0) { + this.isDisabled = true; + this.formData.isUseMinUnit = true; + } else if (this.formData.jobMode == 1) { + this.isDisabled = false; + this.formData.isUseMinUnit = false; + } + } }, created() { this.getDepts()