diff --git a/common/api/order.js b/common/api/order.js index bbcc760..333b6c8 100644 --- a/common/api/order.js +++ b/common/api/order.js @@ -90,3 +90,10 @@ export const scanRecord = (data = {})=> { export const getNextStationList = (data = {})=> { return coreRequest(url.getNextStationList, data, {}, "GET") } + +// 扫描-获取下一网点 +export const getRealGetWaybillPrintData = (data = {})=> { + return coreRequest(url.getRealGetWaybillPrintData, data, {}, "GET") +} + + diff --git a/common/api/url.js b/common/api/url.js index c0d65e7..68ca306 100644 --- a/common/api/url.js +++ b/common/api/url.js @@ -40,6 +40,7 @@ export default { getOrderDetail: `/emis/emisWaybill/getWaybillDetail`, // 订单详情 scanRecord: `/emis/emisTmsScanRecord/scan`, // 扫描- 揽收 + getRealGetWaybillPrintData: `/emis/emisWaybill/realGetWaybillPrintData`, // 运单 打印数据 getNextStationList: `/emis/emisTmsScanRecord/getNextStationList`, // 获取-扫描下一网点 diff --git a/pages/print/courierNote.vue b/pages/print/courierNote.vue index e6d8251..7a0db67 100644 --- a/pages/print/courierNote.vue +++ b/pages/print/courierNote.vue @@ -1,121 +1,110 @@