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

31 lines
640 B

// 图片直播相关接口
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