From 93759d7547d0f58a16d894fdb6b778e061bde758 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Wed, 19 Mar 2025 10:18:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9B=98=E7=82=B9=E7=A7=BB?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/count/coms/comCountRecordCard.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pages/count/coms/comCountRecordCard.vue b/src/pages/count/coms/comCountRecordCard.vue index 079da660..515dbf9b 100644 --- a/src/pages/count/coms/comCountRecordCard.vue +++ b/src/pages/count/coms/comCountRecordCard.vue @@ -153,6 +153,11 @@ res => { if (res) { this.recordList.splice(index, 1) + var handleQty=0; + this.recordList.forEach(item => { + handleQty = calc.add(Number(handleQty), Number(item.handleQty)) + }) + this.dataContent.qty=handleQty; this.$emit('removePack') } });