notice.js 832 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //平台公告
  2. const notice = '/notice/page';
  3. //宣传素材
  4. const material = "/material/page"
  5. //文章推荐
  6. const recommentList = "/bbs/article/recommend-list"
  7. //我的积分
  8. const recordInfo = "/integral/config/info"
  9. //积分明细
  10. const detailedInfo = "/integral/record/my-list"
  11. //课程分类列表
  12. const classifyList = "/article/course/classify/list"
  13. //文章列表
  14. const articleList = "/bbs/article/list"
  15. //推荐文章
  16. const recommendList = "/bbs/article/recommend-list"
  17. //热门列表
  18. const hotList = "/bbs/article/hot-list"
  19. //文章留言
  20. const articleComment = "/bbs/article/comment"
  21. //文章详情
  22. // const articleInfo = "/bbs/article/info/{id}"
  23. export{
  24. notice,
  25. material,
  26. recommentList,
  27. recordInfo,
  28. detailedInfo,
  29. classifyList,
  30. articleList,
  31. recommendList,
  32. hotList,
  33. articleComment,
  34. // articleInfo
  35. }