12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //平台公告
- const notice = '/notice/page';
- //宣传素材
- const material = "/material/page"
- //文章推荐
- const recommentList = "/bbs/article/recommend-list"
- //我的积分
- const recordInfo = "/integral/config/info"
- //积分明细
- const detailedInfo = "/integral/record/my-list"
- //课程分类列表
- const classifyList = "/article/course/classify/list"
- //文章列表
- const articleList = "/bbs/article/list"
- //推荐文章
- const recommendList = "/bbs/article/recommend-list"
- //热门列表
- const hotList = "/bbs/article/hot-list"
- //文章留言
- const articleComment = "/bbs/article/comment"
- //文章详情
- // const articleInfo = "/bbs/article/info/{id}"
- export{
- notice,
- material,
- recommentList,
- recordInfo,
- detailedInfo,
- classifyList,
- articleList,
- recommendList,
- hotList,
- articleComment,
- // articleInfo
- }
|