diff --git a/src/api/order.js b/src/api/order.js index 54eef86..5c322de 100644 --- a/src/api/order.js +++ b/src/api/order.js @@ -52,6 +52,12 @@ export function orderUpdateApi (id, data) { export function orderDeliveryApi (id, data) { return request.post(`store/order/delivery/${id}`, data) } +/** + * @description 订单 -- 发货 + */ +export function orderOtherDeliveryApi (id, data) { + return request.post(`store/order/other/delivery/${id}`, data) +} /** * @description 订单 -- 详情 */ @@ -298,6 +304,12 @@ export function exprTempsLst (data) { export function batchDeliveryApi (data) { return request.post(`store/order/delivery_batch`, data) } +/** + * @description 发送货 -- 批量发送货 + */ +export function batchOtherDeliveryApi (data) { + return request.post(`store/order_other/delivery_batch`, data) +} /** * @description 发送货 -- 电子面单默认数据 */ diff --git a/src/views/order/index_credit.vue b/src/views/order/index_credit.vue index b6ded30..a171e47 100644 --- a/src/views/order/index_credit.vue +++ b/src/views/order/index_credit.vue @@ -459,7 +459,7 @@ --> - + +