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 7c228049..c2f0e707 100644 --- a/src/views/distribution/artery/VehicleArrivalManagement.vue +++ b/src/views/distribution/artery/VehicleArrivalManagement.vue @@ -1569,7 +1569,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 f18ab9bd..aae541ae 100644 --- a/src/views/distribution/artery/VehicleStowage.vue +++ b/src/views/distribution/artery/VehicleStowage.vue @@ -1485,7 +1485,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 e6a2ffc6..9e69d510 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/, ''), },