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

  1. // 记录相关接口
  2. const api = {
  3. //添加记录 category 分类 0浏览 1点赞 2转发 3激励视频 4封面广告
  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