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()