feat:评价区改造
This commit is contained in:
+23
-5
@@ -134,7 +134,7 @@ export function afterSaleDetail(data) {
|
||||
export function cancelAfterSale(data) {
|
||||
return request({
|
||||
url: "/order/cancelAfterApply",
|
||||
method: "post",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
@@ -142,8 +142,8 @@ export function cancelAfterSale(data) {
|
||||
// 寄回商品反馈
|
||||
export function returnGoodsFeedback(data) {
|
||||
return request({
|
||||
url: "/order/sendGoodsBack",
|
||||
method: "post",
|
||||
url: "/order/sendGoodsBack",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
@@ -161,7 +161,7 @@ export function getExpressCompany() {
|
||||
export function cancelOrder(data) {
|
||||
return request({
|
||||
url: "/order/cancelOrder",
|
||||
method: "post",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
@@ -170,7 +170,25 @@ export function cancelOrder(data) {
|
||||
export function deleteOrderQuery(data) {
|
||||
return request({
|
||||
url: "/order/deleteOrder",
|
||||
method: "post",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
// 修改订单地址
|
||||
export function updateOrderAddress(data) {
|
||||
return request({
|
||||
url: "/order/updateAddress",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
// 待发货订单申请修改地址
|
||||
export function applyUpdateAddress(data) {
|
||||
return request({
|
||||
url: "/order/applyModifyShippingAddress",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user