Browse Source

修复零担标签打印bug

dev
qb 1 month ago
parent
commit
4fd3938e98
  1. 2
      src/components/MyPrintZero/MyPrintZero.vue

2
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;

Loading…
Cancel
Save