From 58d550ce69d85a2f6cf248bd55b35aff0098c58c Mon Sep 17 00:00:00 2001 From: zhangdi <1104545947@qq.com> Date: Mon, 18 May 2026 14:07:10 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/firstOrder/components/outDialog.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/views/firstOrder/components/outDialog.vue b/src/views/firstOrder/components/outDialog.vue index 203d103..9fd28e7 100644 --- a/src/views/firstOrder/components/outDialog.vue +++ b/src/views/firstOrder/components/outDialog.vue @@ -608,15 +608,18 @@ export default { }, selectionChange(row) { this.batchSelectionVisible = false; - row.forEach((item) => { - item.theOutboundQuantity = 1; - }); + // row.forEach((item) => { + // item.outboundQuantity = 1; + // }); this.sizeForm.inTableData = row; this.getStatistics(); }, confirm(allSelectedList) { this.consumableVisible = false; + allSelectedList.forEach((item) => { + item.outboundQuantity = 1; + }); this.sizeForm.inTableData = allSelectedList; this.getStatistics(); }, // 处理搜索 @@ -680,7 +683,7 @@ export default { } } if (this.sizeForm.optionType === "NY") { - row.theOutboundQuantity = 1; + row.outboundQuantity = 1; } this.getStatistics(); },