鸿宇研学生前端代码
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.

32 lines
745 B

  1. // 研学活动相关接口
  2. const api = {
  3. // 系统配置-查询研学活动分类列表
  4. queryCategoryList: {
  5. url: '/config/queryCategoryList',
  6. method: 'GET',
  7. },
  8. // 首页&分类-查询研学活动列表
  9. queryActivityList: {
  10. url: '/activity/queryActivityList',
  11. method: 'GET',
  12. },
  13. // 首页&分类-查询研学活动详情
  14. queryActivityById: {
  15. url: '/activity/queryActivityById',
  16. method: 'GET',
  17. },
  18. // 首页&分类-查询我收藏的研学活动列表
  19. queryCollectionActivityList: {
  20. url: '/activity/queryCollectionActivityList',
  21. method: 'GET',
  22. },
  23. // 首页&分类-收藏研学活动
  24. collectionActivity: {
  25. url: '/activity/collectionActivity',
  26. method: 'POST',
  27. auth: true,
  28. limit : 500,
  29. },
  30. }
  31. export default api