| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const refundAmount = data => {
- return https.get('/refund/refund-amount', data)
- }
- export const allRefund = data => {
- return https.get('/refund/all-refund', data)
- }
- //退款详情
- export const refundDetail = data => {
- return https.get('/refund/detail', data)
- }
- export const refundList = data => {
- return https.get('/refund/list', data)
- }
- /** 商城顾客售后申请列表(商家审核) */
- export const mallApplyList = data => {
- return https.get('/refund/mall-apply-list', data)
- }
- /** 商城顾客售后申请详情 */
- export const mallApplyDetail = data => {
- return https.get('/refund/mall-apply-detail', data)
- }
- /** 审核通过并执行退款 */
- export const mallApplyPass = data => {
- return https.post('/refund/mall-apply-pass', data)
- }
- /** 驳回申请 */
- export const mallApplyReject = data => {
- return https.post('/refund/mall-apply-reject', data)
- }
- /** 无原单退款(工作台「退款」:选客户+花材,不关联销售单) */
- export const createFreeRefund = data => {
- return https.post('/refund/create-free-refund', data)
- }
- /** 确认已线下原路退回(现金等人工确认 hasReturn=1) */
- export const markHasReturn = data => {
- return https.post('/refund/mark-has-return', data)
- }
- /** 不想线下转账:返充到客户余额(returnBalance=1) */
- export const returnBalance = data => {
- return https.post('/refund/return-balance', data)
- }
|