From 87ccd632171007e9ecce24471050f3cec2cd4ab4 Mon Sep 17 00:00:00 2001 From: "pref_mail@163.com" Date: Wed, 16 Oct 2024 22:38:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=93=E5=8D=B0=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ArteryPrintTemplate.vue | 131 +++++++++--------- src/utils/print.js | 13 +- .../artery/VehicleArrivalManagement.vue | 2 +- .../distribution/artery/VehicleStowage.vue | 2 +- src/views/waybill/TemporaryStorageList.vue | 2 +- vite.config.js | 2 +- 6 files changed, 76 insertions(+), 76 deletions(-) diff --git a/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue b/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue index a6bfb5ea..d3990bf4 100644 --- a/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue +++ b/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue @@ -1,132 +1,127 @@ diff --git a/src/utils/print.js b/src/utils/print.js index aee7c793..d36c064e 100644 --- a/src/utils/print.js +++ b/src/utils/print.js @@ -8,7 +8,9 @@ const handleTitlePrint = (LODOP, templateData) => { LODOP.SET_PRINT_STYLEA(0, 'TextNeatRow', true); //允许标点溢出,且英文单词拆开 // LODOP.SET_PRINT_STYLE('FontColor', '#000000'); // // 设置打印整宽且不变形 - LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', '95%'); + LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', '100%'); + /**设定打印的带线啊哦 */ + LODOP.SET_PRINT_PAGESIZE(1,970, 720, ""); // // 设置打印后自动关闭 LODOP.SET_PRINT_MODE('AUTO_CLOSE_PREWINDOW', 1); // // data就是一段html文本 @@ -22,12 +24,15 @@ const handleDeliveryPrint = (LODOP, templateData) => { LODOP.SET_PRINT_STYLEA(0, 'TextNeatRow', true); //允许标点溢出,且英文单词拆开 // LODOP.SET_PRINT_STYLE('FontColor', '#000000'); // // 设置打印整宽且不变形 - LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', '98%'); + LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', '100%'); + LODOP.SET_PRINT_PAGESIZE(1,2160, 1400, ""); // // 设置打印后自动关闭 LODOP.SET_PRINT_MODE('AUTO_CLOSE_PREWINDOW', 1); + - // // data就是一段html文本 - LODOP.ADD_PRINT_HTM('0', '0%', '100%%', '100%', templateData); + + // // data就是一段html文本 + LODOP.ADD_PRINT_HTM('0', '0%', '100%', '100%', templateData); }; /** diff --git a/src/views/distribution/artery/VehicleArrivalManagement.vue b/src/views/distribution/artery/VehicleArrivalManagement.vue index 893c695f..d14244a8 100644 --- a/src/views/distribution/artery/VehicleArrivalManagement.vue +++ b/src/views/distribution/artery/VehicleArrivalManagement.vue @@ -1580,7 +1580,7 @@ const handleDirectGoMarketDetails = ({ row }) => { /** 配载打印 */ const handlePrint = () => { - const nodeList = document.querySelectorAll('.listOfLoadedWagonsPopUp table'); + const nodeList = document.querySelectorAll('.listOfLoadedWagonsPopUp .VehicleStowageTable'); print(nodeList); }; diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue index b1fa89b5..96697bf6 100644 --- a/src/views/distribution/artery/VehicleStowage.vue +++ b/src/views/distribution/artery/VehicleStowage.vue @@ -1496,7 +1496,7 @@ const handleShowListOfLoadedWagons = async () => { /** 配载打印 */ const handlePrint = () => { const nodeList = document.querySelectorAll('.listOfLoadedWagonsPopUp table'); - + console.log(nodeList, 123) print(nodeList); }; diff --git a/src/views/waybill/TemporaryStorageList.vue b/src/views/waybill/TemporaryStorageList.vue index e42d5c6b..cadd760f 100644 --- a/src/views/waybill/TemporaryStorageList.vue +++ b/src/views/waybill/TemporaryStorageList.vue @@ -541,7 +541,7 @@ import { onActivated, onDeactivated, } from 'vue'; -import functions from '@/utils/functions.js'; + import dayjs from 'dayjs'; import { mapGetters } from 'vuex'; /** 获取字典 */ diff --git a/vite.config.js b/vite.config.js index ffe913d1..2ed105f3 100644 --- a/vite.config.js +++ b/vite.config.js @@ -40,7 +40,7 @@ export default ({ mode, command }) => { // target: 'http://192.168.3.16:13000', target: 'http://192.168.3.73:13000', //? // target: 'http://h5uapi.huitongys.com', - target: 'http://test.api.huo5u.com', + // target: 'http://test.api.huo5u.com', changeOrigin: true, rewrite: path => path.replace(/^\/api/, ''), },