From 35c3dec1198cc9ad16a132b249952a710dbb4f2a Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 25 Feb 2025 17:16:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=A0=87=E7=AD=BE=E6=89=93?= =?UTF-8?q?=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MyPrintZero/MyPrintZero.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/MyPrintZero/MyPrintZero.vue b/src/components/MyPrintZero/MyPrintZero.vue index 8e2a3c5c..475c792b 100644 --- a/src/components/MyPrintZero/MyPrintZero.vue +++ b/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);