// 评论相关接口
|
|
|
|
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
|