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

24 lines
477 B

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