feat: 售后信息接口对接

This commit is contained in:
2025-08-31 23:59:51 +08:00
parent 9e87dfee1b
commit eb2b24ebac
8 changed files with 1741 additions and 923 deletions
+36
View File
@@ -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,
});
}