feat: 售后信息接口对接
This commit is contained in:
@@ -103,3 +103,39 @@ export function getMiniProgramSignUrl(data) {
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
// 售后申请
|
||||
export function afterSaleApply(data) {
|
||||
return request({
|
||||
url: "/order/afterApply",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
// 售后订单详情
|
||||
export function afterSaleDetail(data) {
|
||||
return request({
|
||||
url: "/order/getAfterDetail",
|
||||
method: "get",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
// 撤销售后申请
|
||||
export function cancelAfterSale(data) {
|
||||
return request({
|
||||
url: "/order/cancelAfterApply",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
// 寄回商品反馈
|
||||
export function returnGoodsFeedback(data) {
|
||||
return request({
|
||||
url: "/order/sendGoodsBack",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user