推广小程序前端代码
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
790 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. // 首页相关接口
  2. const api = {
  3. // 获取首页轮播图
  4. banner: {
  5. url: '/index_common/getBanner',
  6. method: 'GET',
  7. },
  8. // 获取首页活动列表带分页
  9. activityPageList: {
  10. url: '/index_common/getActivityPageList',
  11. method: 'GET',
  12. },
  13. // 活动详情
  14. activityInfo: {
  15. url: '/index_common/getActivityInfo',
  16. method: 'GET',
  17. },
  18. // 我的收藏
  19. collectPageList: {
  20. url: '/index_common/getCollectPageList',
  21. method: 'GET',
  22. },
  23. // 旅行列表
  24. travelPageList: {
  25. url: '/index_common/getTravelPageList',
  26. method: 'GET',
  27. },
  28. // 旅行详情
  29. travelInfo: {
  30. url: '/index_common/getTravelInfo',
  31. method: 'GET',
  32. },
  33. // 悦动时刻信息
  34. getYueDong: {
  35. url: '/index_common/getYueDong',
  36. method: 'GET',
  37. },
  38. }
  39. export default api