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

17 lines
464 B

  1. // 记录相关接口
  2. const api = {
  3. //添加记录 category 分类 0浏览 1点赞 2转发 3激励视频 4封面广告
  4. addBrowseRecord: {
  5. url: '/city/browseRecord/addBrowseRecord',
  6. method: 'POST',
  7. auth : true,
  8. showLoading : true,
  9. },
  10. //获取记录列表type-0帖子-1租房-2工作-3景点-4美食-5活动-6人找车-7车找人-8文章
  11. getBrowseRecordPage: {
  12. url: '/city/browseRecord/getBrowseRecordPage',
  13. method: 'GET',
  14. },
  15. }
  16. export default api