diff --git a/src/api/waybill/WaybillOrderList.js b/src/api/waybill/WaybillOrderList.js index c86aadcc..264d4985 100644 --- a/src/api/waybill/WaybillOrderList.js +++ b/src/api/waybill/WaybillOrderList.js @@ -7,14 +7,11 @@ import request from '@/axios'; * @param {*} params * @returns */ -export const postWarehouseWaybillPageWaybillList = (page, params) => { +export const postWarehouseWaybillPageWaybillList = data => { return request({ url: '/api/logpm-warehouse/warehouseWaybill/pageWaybillList', method: 'post', - data: { - ...params, - ...page, - }, + data, }); }; diff --git a/src/components/MyPrint/MyPrint.vue b/src/components/MyPrint/MyPrint.vue index 99fac786..f3017af4 100644 --- a/src/components/MyPrint/MyPrint.vue +++ b/src/components/MyPrint/MyPrint.vue @@ -1,6 +1,6 @@