普兆健康管家前端代码仓库
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.

40 lines
704 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. // 首页相关接口
  2. const api = {
  3. // Banner列表查询
  4. getBanner: {
  5. url: '/index/banner',
  6. method: 'GET',
  7. },
  8. // 个性化推荐
  9. getPersonalized: {
  10. url: '/index/personalized',
  11. method: 'GET',
  12. },
  13. // 普兆介绍->步骤条《左右滑动的内容》
  14. getIntroduce: {
  15. url: '/index/getIntroduce',
  16. method: 'GET',
  17. },
  18. // 普兆介绍->视频介绍
  19. getVideo: {
  20. url: '/index/video',
  21. method: 'GET',
  22. },
  23. // 推荐产品
  24. getRecommendProduct: {
  25. url: '/index/recommendProduct',
  26. method: 'GET',
  27. },
  28. // 关于普兆
  29. getAbout: {
  30. url: '/index/about',
  31. method: 'GET',
  32. },
  33. // 关于普兆详情
  34. getAboutDetail: {
  35. url: '/index/aboutDetail',
  36. method: 'GET',
  37. },
  38. }
  39. export default api