图书馆小程序
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.

21 lines
330 B

2 weeks ago
  1. import request from '../utils/request';
  2. /**
  3. * 获取文章详情
  4. */
  5. export function getArticleDetail(data) {
  6. return request({
  7. url: '/article/details',
  8. data
  9. });
  10. }
  11. /**
  12. * 获取文章评论列表
  13. */
  14. export function getArticleCommentList(data) {
  15. return request({
  16. url: '/article/comment/list',
  17. data
  18. });
  19. }