Browse Source

修复标签打印

dev
qb 1 month ago
parent
commit
35c3dec119
  1. 8
      src/components/MyPrintZero/MyPrintZero.vue

8
src/components/MyPrintZero/MyPrintZero.vue

@ -395,10 +395,10 @@ const handleShowPrint = () => {
for (let index = value.start; index <= value.end; index++) {
let template = details.waybillInfo.template;
template = template.replace('发站仓信息', details.waybillInfo.destinationWarehouseName);
template = template.replace('目的仓信息', details.waybillInfo.departureWarehouseName);
template = template.replace('发站信息', details.waybillInfo.destination);
template = template.replace('到站信息', details.waybillInfo.departure);
template = template.replace('发站仓信息', details.waybillInfo.departureWarehouseName);
template = template.replace('目的仓信息', details.waybillInfo.destinationWarehouseName);
template = template.replace('发站信息', details.waybillInfo.departure);
template = template.replace('到站信息', details.waybillInfo.destination);
template = template.replace('运单号', details.waybillNo);
template = template.replace('订单号', details.waybillInfo.orderNo);
template = template.replace('运单地址', details.waybillInfo.waybillNoCode);

Loading…
Cancel
Save