From 4fd3938e985bb29ebdedf1c4aa793f1c5299b84d Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 25 Feb 2025 09:54:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=9B=B6=E6=8B=85=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E6=89=93=E5=8D=B0bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MyPrintZero/MyPrintZero.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MyPrintZero/MyPrintZero.vue b/src/components/MyPrintZero/MyPrintZero.vue index 5ef5111b..8e2a3c5c 100644 --- a/src/components/MyPrintZero/MyPrintZero.vue +++ b/src/components/MyPrintZero/MyPrintZero.vue @@ -362,7 +362,7 @@ const handleGetWaybillInfo = async (waybillNo, loading, loadingKey = 'pageLoadin const value = details.waybillInfo.detailList[i]; value.start = value.num > 1 ? 1 : 0; - value.end = value.num > 1 ? value.num : 0; + value.end = value.num >= 1 ? value.num : 0; } details.popUpShow.setNum = true;