mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-20 18:05:53 +08:00
提交促销以己部分页面商家端功能迁移,接口对接
This commit is contained in:
@@ -126,10 +126,7 @@ export const getAfterSaleOrderDetail = (sn) => {
|
||||
export const getAfterSaleTraces = (sn) => {
|
||||
return getRequest(`/order/afterSale/getDeliveryTraces/${sn}`)
|
||||
}
|
||||
// 获取商家选中的物流公司
|
||||
export const getLogisticsChecked = () => {
|
||||
return getRequest(`/other/logistics/getChecked`)
|
||||
}
|
||||
|
||||
|
||||
//查询物流
|
||||
export const getTraces = (sn, params) => {
|
||||
@@ -165,3 +162,14 @@ export const storeAddress = (sn) => {
|
||||
export const orderTake = (sn, verificationCode) => {
|
||||
return putRequest(`/order/order/take/${sn}/${verificationCode}`);
|
||||
};
|
||||
|
||||
//分包裹发货
|
||||
export const partDelivery = (orderSn,params) => {
|
||||
return postRequest(`/order/order/${orderSn}/partDelivery`,params,{
|
||||
"Content-type": "application/json"
|
||||
})
|
||||
}
|
||||
// 修改订单备注
|
||||
export const modifyOrderRemark = (sn, params) => {
|
||||
return putRequest(`/order/order/${sn}/sellerRemark`, params);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user