From 25f6269b99071dd84345ef589aa1c53f86ac62a0 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 25 Feb 2025 10:54:40 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../artery/VehicleStowageDetails.vue | 6 +-- .../distribution/inventory/BookingNote.vue | 44 +++---------------- 2 files changed, 9 insertions(+), 41 deletions(-) diff --git a/src/views/distribution/artery/VehicleStowageDetails.vue b/src/views/distribution/artery/VehicleStowageDetails.vue index 4ad9fb33..dcaf588a 100644 --- a/src/views/distribution/artery/VehicleStowageDetails.vue +++ b/src/views/distribution/artery/VehicleStowageDetails.vue @@ -1142,12 +1142,12 @@ const handleBatchDelete = () => { /** 导出 */ const handleExport = () => { - console.log('exportColumnListNode.value.$el :>> ', exportColumnListNode.value.$el); - console.log('detailsRenderData.value :>> ', detailsRenderData.value); + // console.log('exportColumnListNode.value.$el :>> ', exportColumnListNode.value.$el); + // console.log('detailsRenderData.value :>> ', detailsRenderData.value); exportExcel( details.detailsColumnList, detailsRenderData.value, - `${details.form.carsNo} - ${dateNow()}.xlsx` + `${details.form.carsNo} - ${dateNow()}` ); }; diff --git a/src/views/distribution/inventory/BookingNote.vue b/src/views/distribution/inventory/BookingNote.vue index 46b89b76..3df9b965 100644 --- a/src/views/distribution/inventory/BookingNote.vue +++ b/src/views/distribution/inventory/BookingNote.vue @@ -78,43 +78,6 @@ - 打 印 - + 打印标签 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 2/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E6=89=93=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);