瑶都万能墙
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.
 
 
 

25 lines
477 B

// 评论相关接口
const api = {
// 获取评论详情
getCommentDetail: {
url: '/token/commentDetail',
method: 'GET',
auth: true,
},
//发布评论
addComment: {
url: '/token/addComment',
method: 'POST',
limit : 1000,
auth : true,
showLoading : true,
},
//获取评论列表type-0帖子-1租房-2工作-3景点-4美食-5活动-6人找车-7车找人-8文章
getCommentPage: {
url: '/city/getCommentPage',
method: 'GET',
},
}
export default api