index.js 492 B

12345678910111213141516171819202122
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. export const rejectRefund = data => {
  3. return https.post('/refund/refund-waste', data)
  4. }
  5. export const passRefund = data => {
  6. return https.get('/refund/pass', data)
  7. }
  8. export const refundWaste = data => {
  9. return https.post('/refund/refund-waste', data)
  10. }
  11. //退款详情
  12. export const refundDetail = data => {
  13. return https.get('/refund/detail', data)
  14. }
  15. export const refundList = data => {
  16. return https.get('/refund/list', data)
  17. }