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

import request from '../utils/request';
/**
* 获取文章详情
*/
export function getArticleDetail(data) {
return request({
url: '/article/details',
data
});
}
/**
* 获取文章评论列表
*/
export function getArticleCommentList(data) {
return request({
url: '/article/comment/list',
data
});
}