From 5e4131abc5667ba98d409c6d0f26c19561c38120 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Wed, 18 Dec 2024 10:25:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BC=80=E5=90=AF=E5=92=8C=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E6=95=B4=E5=8D=95=E7=9B=98=E7=82=B9=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/count/InvCountOrderModify.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/views/inventory/count/InvCountOrderModify.vue b/src/views/inventory/count/InvCountOrderModify.vue index b9d65b3b..0aa46baf 100644 --- a/src/views/inventory/count/InvCountOrderModify.vue +++ b/src/views/inventory/count/InvCountOrderModify.vue @@ -130,7 +130,7 @@ v-if="countType != 2" type="primary" size="mini" - + :disabled="startCountVisible" @click.native="startCount(1)" >录入产品 @@ -419,6 +419,7 @@ export default { selectedIndex: null, isCodeAlive: true, saveLoading: false, + startCountVisible: false, submitLoading: false, } }, @@ -695,6 +696,7 @@ export default { }); }, startCount(val) { + // this.countProductList = []; if (this.countType === 0 && val === 1) { if (isBlank(this.formData.invStorageCode)) { @@ -708,6 +710,7 @@ export default { }; getCountInvProductProduct(params).then((res) => { if (res.data.total !== 0) { + this.startCountVisible = true let invProductList = res.data.list; for (let product of invProductList) { this.countProductList.push(product); @@ -792,6 +795,11 @@ export default { this.getInvList(); if (!isBlank(this.countOrder.orderId)) { + if (!isBlank(this.countOrder.countType)) { + if (this.countOrder.countType == 0){ + this.startCountVisible = true + } + } //拉取单据详情信息 this.formData = this.countOrder; let params = {orderIdFk: this.countOrder.orderId}; @@ -802,6 +810,7 @@ export default { } }) } + }, };