吉光研途前端代码仓库
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.

33 lines
524 B

3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
  1. // 首页相关接口
  2. const api = {
  3. /**
  4. * 获取banner图列表
  5. */
  6. queryBannerList: {
  7. url: '/index/queryBannerList',
  8. method: 'GET',
  9. },
  10. /**
  11. * 获取论文分类列表
  12. */
  13. queryCategoryThesisList: {
  14. url: '/config/queryCategoryThesisList',
  15. method: 'GET',
  16. },
  17. /**
  18. * 获取论文文章列表
  19. */
  20. queryThesisList: {
  21. url: '/index/queryThesisList',
  22. method: 'GET',
  23. },
  24. /**
  25. * 获取论文文章详情
  26. */
  27. queryThesisById: {
  28. url: '/index/queryThesisById',
  29. method: 'GET',
  30. },
  31. }
  32. export default api