鸿宇研学生前端代码
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.

30 lines
640 B

  1. // 图片直播相关接口
  2. const api = {
  3. // 图片直播-查询图片直播列表
  4. queryImageList: {
  5. url: '/image/queryImageList',
  6. method: 'GET',
  7. },
  8. // 图片直播-新增图片直播信息
  9. addImage: {
  10. url: '/image/addImage',
  11. method: 'GET',
  12. },
  13. // 图片直播-查询图片直播内容列表
  14. queryImageContentList: {
  15. url: '/image/queryImageContentList',
  16. method: 'GET',
  17. },
  18. // 图片直播-新增图片直播内容信息
  19. addImageContent: {
  20. url: '/image/addImageContent',
  21. method: 'GET',
  22. },
  23. // 图片直播-标记有我
  24. queryMarkmeList: {
  25. url: '/image/queryMarkmeList',
  26. method: 'GET',
  27. },
  28. }
  29. export default api