| 123456789101112131415161718 |
- 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)
- }
|