爱简收旧衣按件回收前端代码仓库
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.

29 lines
649 B

4 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. },
  26. }
  27. export default api