| 12345678910111213141516171819202122 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const rejectRefund = data => {
- return https.post('/refund/refund-waste', data)
- }
- export const passRefund = data => {
- return https.get('/refund/pass', data)
- }
- export const refundWaste = data => {
- return https.post('/refund/refund-waste', data)
- }
- //退款详情
- export const refundDetail = data => {
- return https.get('/refund/detail', data)
- }
- export const refundList = data => {
- return https.get('/refund/list', data)
- }
|