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

30 lines
597 B

3 weeks ago
3 weeks ago
3 weeks ago
  1. // 首页相关接口
  2. const api = {
  3. // 首页-查询banner图列表
  4. queryBannerList: {
  5. url: '/index/queryBannerList',
  6. method: 'GET',
  7. },
  8. // 首页-查询公司动态列表
  9. queryNewsList: {
  10. url: '/index/queryNewsList',
  11. method: 'GET',
  12. },
  13. // 首页-查询公司动态详情
  14. queryNewsById: {
  15. url: '/index/queryNewsById',
  16. method: 'GET',
  17. },
  18. // 首页-查询研学政策列表
  19. queryPolicyList: {
  20. url: '/index/queryPolicyList',
  21. method: 'GET',
  22. },
  23. // 首页-查询研学政策详情
  24. queryPolicyById: {
  25. url: '/index/queryPolicyById',
  26. method: 'GET',
  27. },
  28. }
  29. export default api