From d5840893b0ea8cc3100bfbcf1eb1307b399fff7f Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Tue, 11 Feb 2025 16:40:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BA=93=E7=A7=BB=E7=BC=96?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mycomponents/qty/balanceQtyEdit.vue | 2 +- src/pages/inventoryMove/coms/comMoveRecordCard.vue | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/mycomponents/qty/balanceQtyEdit.vue b/src/mycomponents/qty/balanceQtyEdit.vue index 29dbf85f..3d2ef613 100644 --- a/src/mycomponents/qty/balanceQtyEdit.vue +++ b/src/mycomponents/qty/balanceQtyEdit.vue @@ -16,7 +16,7 @@ 包装数量 : - + diff --git a/src/pages/inventoryMove/coms/comMoveRecordCard.vue b/src/pages/inventoryMove/coms/comMoveRecordCard.vue index a21f0370..24e3d444 100644 --- a/src/pages/inventoryMove/coms/comMoveRecordCard.vue +++ b/src/pages/inventoryMove/coms/comMoveRecordCard.vue @@ -125,7 +125,8 @@ detailOptions: [], scanOptions: [], removeOptions: [], - dataList: [] + dataList: [], + currentHandleQty:0 } }, @@ -158,6 +159,7 @@ edit(item) { this.editItem = item; + this.currentHandleQty =item.handleQty; this.$refs.balanceQtyEdit.openEditPopup(item, item.qty); }, @@ -198,7 +200,7 @@ }); }, confirm(qty) { - this.editItem.handleQty = qty; + this.editItem.handleQty = this.currentHandleQty; this.$emit('updateData') } }