From 4b3c6b4a93be6da18b97f1c09d4cc78dd619c654 Mon Sep 17 00:00:00 2001 From: lilu Date: Thu, 2 Mar 2023 14:42:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=B6=E6=95=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/main/BookingLedger/detail/modules/mailingInfo.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/main/BookingLedger/detail/modules/mailingInfo.vue b/src/views/main/BookingLedger/detail/modules/mailingInfo.vue index c6fbb9d..c0236b0 100644 --- a/src/views/main/BookingLedger/detail/modules/mailingInfo.vue +++ b/src/views/main/BookingLedger/detail/modules/mailingInfo.vue @@ -1319,16 +1319,22 @@ export default { this.textEntryModalTitle = '件数/包装' if (this.details.pkgstotal) { this.pkgsTextChange() + } else { + this.pkgstotalRes = 0 } } else if (type === 'kgs') { this.textEntryModalTitle = '毛重' if (this.details.kgstotal) { this.kgsTextChange() + } else { + this.kgstotalRes = 0 } } else if (type === 'cbm') { this.textEntryModalTitle = '尺码' if (this.details.cbmtotal) { this.cbmTextChange() + } else { + this.cbmtotalRes = 0 } } },