update:商家自行发货和订单完成接口

This commit is contained in:
lihaoyuan 2025-11-03 15:09:03 +08:00
parent 667ad68af1
commit 079d305a36

View File

@ -164,6 +164,24 @@ export function GetExpediteSFOrder(params) {
}); });
} }
//商家自行发货
export function SelDelivery(params) {
return http({
url: "/shop/sf-express/selDelivery",
method: "post",
params,
baseURL: config.apiMobile,
});
}
//订单完成
export function SelFinishDelivery(params) {
return http({
url: "/shop/sf-express/selFinishOrder",
method: "post",
params,
baseURL: config.apiMobile,
});
}
/** /**
* 拣货完成 * 拣货完成
* @author Seven * @author Seven