// 图片直播相关接口 const api = { // 图片直播-查询图片直播列表 queryImageList: { url: '/image/queryImageList', method: 'GET', }, // 图片直播-新增图片直播信息 addImage: { url: '/image/addImage', method: 'GET', }, // 图片直播-查询图片直播内容列表 queryImageContentList: { url: '/image/queryImageContentList', method: 'GET', }, // 图片直播-新增图片直播内容信息 addImageContent: { url: '/image/addImageContent', method: 'GET', }, // 图片直播-标记有我 queryMarkmeList: { url: '/image/queryMarkmeList', method: 'GET', }, } export default api