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

  1. // 首页相关接口
  2. const api = {
  3. /**
  4. * 查询概述说明列表
  5. */
  6. querySummaryList: {
  7. url: '/config/querySummaryList',
  8. method: 'GET',
  9. },
  10. /**
  11. * 查询概述说明详情
  12. */
  13. querySummaryByParamCode: {
  14. url: '/config/querySummaryByParamCode',
  15. method: 'GET',
  16. },
  17. /**
  18. * 系统配置-获取服务模块分类列表
  19. */
  20. queryCategoryServiceModuleList: {
  21. url: '/config/queryCategoryServiceModuleList',
  22. method: 'GET',
  23. },
  24. /**
  25. * 首页-获取服务模块文章列表
  26. */
  27. queryServiceArticleList: {
  28. url: '/index/queryServiceArticleList',
  29. method: 'GET',
  30. },
  31. /**
  32. * 首页-获取服务模块文章详情
  33. */
  34. queryServiceArticleById: {
  35. url: '/index/queryServiceArticleById',
  36. method: 'GET',
  37. },
  38. }
  39. export default api