爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
972 B

4 weeks ago
2 weeks ago
  1. const api = {
  2. // 获取回收去向
  3. getRecyclingDestination: {
  4. url: '/recycle-admin/applet/index/getRecyclingDestination',
  5. method: 'GET',
  6. auth : false,
  7. },
  8. // 获取回收去向详情
  9. getRecyclingDestinationDetail: {
  10. url: '/recycle-admin/applet/index/getRecyclingDestinationDetail',
  11. method: 'GET',
  12. auth : false,
  13. },
  14. // 联系客服问题相关详情
  15. getQuestionListDetail: {
  16. url: '/recycle-admin/applet/order/getQuestionListDetail',
  17. method: 'GET',
  18. auth : false,
  19. },
  20. // 提现
  21. withdraw: {
  22. url: '/recycle-admin/applet/money/withdraw',
  23. method: 'POST',
  24. auth : true,
  25. limit: 2000,
  26. showLoading: true,
  27. },
  28. // 提现领取成功
  29. withdrawSUccess: {
  30. url: '/recycle-admin/applet/money/withdrawSUccess',
  31. method: 'POST',
  32. auth : true,
  33. },
  34. // 根据快递单号查询订单号
  35. getOrderIdBywliuNo: {
  36. url: '/recycle-admin/applet/info_team_order/getOrderIdBywliuNo',
  37. method: 'GET',
  38. auth : true,
  39. },
  40. }
  41. export default api