index.js 408 B

123456789101112131415161718
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. export const refundAmount = data => {
  3. return https.get('/refund/refund-amount', data)
  4. }
  5. export const allRefund = data => {
  6. return https.get('/refund/all-refund', data)
  7. }
  8. //退款详情
  9. export const refundDetail = data => {
  10. return https.get('/refund/detail', data)
  11. }
  12. export const refundList = data => {
  13. return https.get('/refund/list', data)
  14. }