diff --git a/src/api/distribution/VehicleStowageDetails.js b/src/api/distribution/VehicleStowageDetails.js index fcc43b08..67f8f808 100644 --- a/src/api/distribution/VehicleStowageDetails.js +++ b/src/api/distribution/VehicleStowageDetails.js @@ -65,3 +65,25 @@ export const postFindFinanceList = data => { data, }); }; + +/** + * 查询是否存在异常数据 + */ +export const postFindCostShareBefore = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/findCostShareBefore', + method: 'post', + data, + }); +}; + +/** + * 成本分摊 + */ +export const postCostShareByLoadId = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/costShareByLoadId', + method: 'post', + data, + }); +}; diff --git a/src/option/distribution/VehicleStowage.js b/src/option/distribution/VehicleStowage.js index 4fb505cb..cd10b161 100644 --- a/src/option/distribution/VehicleStowage.js +++ b/src/option/distribution/VehicleStowage.js @@ -774,7 +774,7 @@ export const packageColumnList = [ head: false, }, { - prop: 'scanCode', + prop: 'orderPackageCode', label: '包条码', width: '130', type: 2, diff --git a/src/option/waybill/TemporaryStorageList.js b/src/option/waybill/TemporaryStorageList.js index 84ad6e80..b895fe63 100644 --- a/src/option/waybill/TemporaryStorageList.js +++ b/src/option/waybill/TemporaryStorageList.js @@ -85,6 +85,17 @@ export const columnList = [ fixed: false, sortable: true, }, + { + prop: 'totalNum', + label: '数量', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + isshowSummary: true, + }, { prop: 'senderFactory', label: '发货单位', @@ -165,17 +176,6 @@ export const columnList = [ fixed: false, sortable: true, }, - { - prop: 'totalNum', - label: '数量', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - isshowSummary: true, - }, { prop: 'trainNumber', label: '客户车次', diff --git a/src/utils/print.js b/src/utils/print.js index d160f000..1c3f685f 100644 --- a/src/utils/print.js +++ b/src/utils/print.js @@ -1,5 +1,5 @@ import { getLodop } from '@/utils/LodopFuncs'; -import hwyPrintNew from '@/utils/print/index'; +import hwyPrintNew from '@/utils/print/index'; /** * 根据传入的元素列表进行打印 * @param nodeList 元素节点列表 @@ -7,23 +7,23 @@ import hwyPrintNew from '@/utils/print/index'; const print = nodeList => { // 直接调用时使用默认节点列表 if (!nodeList) nodeList = document.querySelectorAll('.el-dialog__body>div>div>div'); - + // 初始化打印实例 let LODOP = getLodop(); - + // 当列表内没有元素时, 退出函数 if (nodeList.length === 0) return; LODOP.PRINT_INITA(1, 1, 900, 660, '测试预览功能'); LODOP.SET_PRINT_MODE('WINDOW_DEFPRINTER', 'Godex G500'); LODOP.SET_PRINT_STYLEA(0, 'TextNeatRow', true); //允许标点溢出,且英文单词拆开 + // LODOP.SET_PRINT_STYLE('FontColor', '#000000'); // // 设置打印整宽且不变形 LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', 'Auto-Width'); // // 设置打印后自动关闭 LODOP.SET_PRINT_MODE('AUTO_CLOSE_PREWINDOW', 1); // 循环列表内元素并打印 nodeList.forEach(orderNode => { - console.log(orderNode, 'orderNode'); let templateData = orderNode.innerHTML; @@ -35,20 +35,17 @@ const print = nodeList => { // LODOP.PREVIEW(); //预览(预览打印无脚标) }; -const newPrint = nodeName =>{ - if(nodeName) return hwyPrintNew(nodeName) +const newPrint = nodeName => { + if (nodeName) return hwyPrintNew(nodeName); // const nodeList = document.querySelectorAll('.el-dialog__body>div>div>div') - - // for (const iterator of nodeList) { // //$Print(iterator) // console.log(iterator, 'iterator'); // } - hwyPrintNew('.el-dialog__body>div>div>div'); -} +}; export default print; diff --git a/src/views/distribution/artery/VehicleArrivalManagement.vue b/src/views/distribution/artery/VehicleArrivalManagement.vue index 8a7aaf6b..d3819e48 100644 --- a/src/views/distribution/artery/VehicleArrivalManagement.vue +++ b/src/views/distribution/artery/VehicleArrivalManagement.vue @@ -195,7 +195,13 @@ >编辑 - + 更多 - +