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') } }