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