diff --git a/common/api/order.js b/common/api/order.js index 334b858..98d2dc2 100644 --- a/common/api/order.js +++ b/common/api/order.js @@ -187,3 +187,13 @@ export const confirmOrder = (data = {})=> { export const cancelOrder = (data = {})=> { return coreRequest(url.cancelOrder, data, {}) } + +// 进仓登记 +export const registerWarehouseInInfo = (data = {})=> { + return coreRequest(url.registerWarehouseInInfo, data, {}) +} + +// 获取新进仓单号 +export const getWareHouseInNo = (data = {})=> { + return coreRequest(url.getWareHouseInNo, data, {}) +} diff --git a/common/api/url.js b/common/api/url.js index 1136227..7a142f9 100644 --- a/common/api/url.js +++ b/common/api/url.js @@ -59,5 +59,7 @@ export default { confirmOrder: `/emis/emisWaybill/confirmOrder`, // 确认接单 cancelOrder: `/emis/emisWaybill/cancelOrder`, // 取消订单 + registerWarehouseInInfo: `/emis/emisWarehouseInBatch/registerWarehouseInInfo`, // 进仓登记 + getWareHouseInNo: `/emis/common/getWareHouseInNo`, // 获取新进仓单号 } diff --git a/pages.json b/pages.json index 00d6a9c..0f6bef6 100644 --- a/pages.json +++ b/pages.json @@ -81,13 +81,7 @@ "navigationBarTitleText": "" } }, - { - "path": "pages/post/post", - "style": { - "navigationBarTitleText": "寄件信息" - } - }, - + { "path": "pages/post/detail", "style": { diff --git a/pages/deliveryDeal/storage.vue b/pages/deliveryDeal/storage.vue index 7a3d70d..a23d368 100644 --- a/pages/deliveryDeal/storage.vue +++ b/pages/deliveryDeal/storage.vue @@ -1,97 +1,95 @@ - - - \ No newline at end of file