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

  1. // 案例相关接口
  2. const api = {
  3. /**
  4. * 获取服务分类列表
  5. */
  6. queryCategoryServiceList: {
  7. url: '/config/queryCategoryServiceList',
  8. method: 'GET',
  9. },
  10. /**
  11. * 获取专业分类列表
  12. */
  13. queryCategoryMajorList: {
  14. url: '/config/queryCategoryMajorList',
  15. method: 'GET',
  16. },
  17. /**
  18. * 获取阶段分类列表
  19. */
  20. queryCategoryPeriodList: {
  21. url: '/config/queryCategoryPeriodList',
  22. method: 'GET',
  23. },
  24. /**
  25. * 获取案例文章列表
  26. */
  27. queryAriticleList: {
  28. url: '/index/queryAriticleList',
  29. method: 'GET',
  30. },
  31. /**
  32. * 获取案例文章详情
  33. */
  34. queryAriticleById: {
  35. url: '/index/queryAriticleById',
  36. method: 'GET',
  37. },
  38. }
  39. export default api