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;