From aa2005fac0fb649599c37d4aa54d1d769b38099f Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Mon, 31 Mar 2025 21:36:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=9B=98=E7=82=B9=E8=A1=A5=E4=B8=81?= 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, 1 insertion(+), 10 deletions(-) diff --git a/src/views/inventory/count/InvCountOrderModify.vue b/src/views/inventory/count/InvCountOrderModify.vue index 19270236..7ea463ef 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,7 +419,6 @@ export default { selectedIndex: null, isCodeAlive: true, saveLoading: false, - startCountVisible: false, submitLoading: false, } }, @@ -696,7 +695,6 @@ export default { }); }, startCount(val) { - // this.countProductList = []; if (this.countType === 0 && val === 1) { if (isBlank(this.formData.invStorageCode)) { @@ -710,7 +708,6 @@ export default { }; getCountInvProductProduct(params).then((res) => { if (res.data.total !== 0) { - this.startCountVisible = true let invProductList = res.data.list; for (let product of invProductList) { let product2 = { @@ -807,11 +804,6 @@ 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}; @@ -822,7 +814,6 @@ export default { } }) } - }, };