退货详情

This commit is contained in:
sin
2019-04-27 12:47:18 +08:00
parent 207fdc1d55
commit a5a51b9cdb
4 changed files with 90 additions and 54 deletions

View File

@@ -149,7 +149,7 @@ export function getLogisticsInfo(params) {
export function getOrderReturnReason() {
return request({
url: '/order-api/users/order_return/reason',
method: 'get',
method: 'GET',
});
}
@@ -165,3 +165,13 @@ export function orderReturnApply(params) {
},
});
}
export function getOrderReturnInfo(orderId) {
return request({
url: '/order-api/users/order_return/info',
method: 'GET',
params: {
orderId,
},
});
}