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

22 lines
512 B

  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/index/getQuestionListDetail',
  17. method: 'GET',
  18. auth : false,
  19. },
  20. }
  21. export default api