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

18 lines
412 B

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