| 123456789101112131415161718192021222324252627282930 |
- /**
- * 商城售后申请 API
- * 供 pages/order/refund、订单详情「申请售后」使用
- */
- import https from '@/plugins/luch-request_0.0.7/request'
- /** 申请页初始化:订单商品、可退金额、已有申请进度 */
- export const getRefundData = data => {
- return https.get('/refund/get-refund-data', data)
- }
- /** 顾客提交售后申请(待审核) */
- export const createRefund = data => {
- return https.post('/refund/create-order', data)
- }
- /** 顾客撤销待审核申请 */
- export const cancelRefund = data => {
- return https.post('/refund/cancel-order', data)
- }
- /** 顾客售后申请列表 */
- export const refundList = data => {
- return https.get('/refund/list', data)
- }
- /** 顾客售后申请详情 */
- export const refundDetail = data => {
- return https.get('/refund/detail', data)
- }
|