12 lines
880 B
JavaScript
12 lines
880 B
JavaScript
export const apiArr = {
|
|
orderList: '/api/v2/wechat/commodity/order', // 商品订单列表
|
|
afterSalesList: '/api/v2/wechat/commodity/after-sales/list', // 商品订单售后列表
|
|
afterSaleCreate: "/api/v2/wechat/commodity/after-sales/refund-info/create", //商品订单售后信息创建
|
|
cancelOrConfirm: "/api/v2/wechat/commodity/order/cancel_or_confirm", //商品订单确认收货或取消
|
|
isAllow: "/api/v2/wechat/commodity/after-sales/is-allow", //判断订单是否能申请售后
|
|
revokeApply: "/api/v2/wechat/commodity/after-sales/revoke-apply", //撤销售后申请
|
|
changeGoodsList: "/api/v2/wechat/commodity/after-sales/change-goods-list", //商品售后换货商品列表
|
|
updateApply: "/api/v2/wechat/commodity/after-sales/update-apply", //商品订单售后修改申请
|
|
createReview: "/api/v2/wechat/commodity/review/create", //创建订单评价
|
|
};
|