修复售后申请退款金额

This commit is contained in:
hupeng
2023-12-06 18:38:23 +08:00
parent 583c1b8d81
commit 659466931e
2 changed files with 35 additions and 11 deletions

View File

@ -23,6 +23,13 @@ export function getAfterSealsList (params) {
});
}
export function getRefundAmount(data) {
return request.post(`/getRefundAmount`, data, {
login: true
});
}
// 售后详情
export function getAfterSalesDeatail(key) {
return request.get(`/applyForAfterSales/${key}`);