diff --git a/src/api/distribution/VehicleArrivalManagement.js b/src/api/distribution/VehicleArrivalManagement.js index 78e92d13..626ad39b 100644 --- a/src/api/distribution/VehicleArrivalManagement.js +++ b/src/api/distribution/VehicleArrivalManagement.js @@ -81,4 +81,14 @@ export const postFindLinePhoto = data => { }); }; -// /logpm-trunkline/carsLoad/unloadByLoadId +/** + * 到车数据导出 + */ +export const postExportCarsPageList = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/exportCarsPageList', + method: 'post', + data, + responseType: 'blob', + }); +}; diff --git a/src/api/distribution/VehicleStowage.js b/src/api/distribution/VehicleStowage.js index b31df026..82b2e80f 100644 --- a/src/api/distribution/VehicleStowage.js +++ b/src/api/distribution/VehicleStowage.js @@ -158,3 +158,15 @@ export const postFindWarehouseUnloadReport = data => { data, }); }; + +/** + * 车辆配载数据导出 + */ +export const postExportLoadCarsPageList = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/exportLoadCarsPageList', + method: 'post', + data, + responseType: 'blob', + }); +}; diff --git a/src/components/MyPrint/MyPrint.vue b/src/components/MyPrint/MyPrint.vue index f9d4face..ecd623bf 100644 --- a/src/components/MyPrint/MyPrint.vue +++ b/src/components/MyPrint/MyPrint.vue @@ -19,7 +19,7 @@ diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 0a0a0107..3637ecc2 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -222,6 +222,7 @@ import { import type { PropType } from 'vue'; import { computeNumber } from '@/utils/util.js'; import { useRoute } from 'vue-router'; +import { postSaveTableSeting } from '@/api/basic/table'; const $route = useRoute(); @@ -735,7 +736,10 @@ const handleWidthChange = (newWidth, oldWidth, column, event) => { console.log('props.columnListName :>> ', props.columnListName); - functions.setStorage($route.fullPath + (props.columnListName || 'columnList'), props.columnList); + postSaveTableSeting({ + tableKey: $route.path + props.columnListName, + tableSetCongig: JSON.stringify(props.columnList), + }); }; defineExpose({ handleCheckSelect, handleClearSelect }); diff --git a/src/utils/print.js b/src/utils/print.js index 24077de9..47a7e178 100644 --- a/src/utils/print.js +++ b/src/utils/print.js @@ -25,7 +25,8 @@ const handleDeliveryPrint = (LODOP, templateData) => { // LODOP.SET_PRINT_STYLE('FontColor', '#000000'); // // 设置打印整宽且不变形 LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', '100%'); - LODOP.SET_PRINT_PAGESIZE(1, 2160, 1396.5, ''); + // LODOP.SET_PRINT_PAGESIZE(1, 2160, 1396.5, ''); + LODOP.SET_PRINT_PAGESIZE(1, 240 + 'mm', 139.7 + 'mm', ''); // // 设置打印后自动关闭 LODOP.SET_PRINT_MODE('AUTO_CLOSE_PREWINDOW', 1); diff --git a/src/views/distribution/artery/TripartiteTransfer.vue b/src/views/distribution/artery/TripartiteTransfer.vue index d5dcf440..6a0fd774 100644 --- a/src/views/distribution/artery/TripartiteTransfer.vue +++ b/src/views/distribution/artery/TripartiteTransfer.vue @@ -184,6 +184,11 @@ @btnCheck="btnsc" @selectCheck="selectsc" @selection="selectionChange" + :tableRowClassName=" + row => { + if (row.loadStatus === '10') return 'err_row'; + } + " >