搜索:判断某个成员是不是禁言

This commit is contained in:
cbb
2026-02-12 17:51:42 +08:00
parent a040b56c74
commit 2191f46317
16 changed files with 388 additions and 212 deletions

View File

@@ -110,7 +110,9 @@ export const imAddLive = (data, method = 'post') => {
export const imDataStartLive = roomId => {
return http({
url: `/api/service/imLiveRoom/start/${roomId}`,
method: 'post'
method: 'post',
/** 错误是否返回上一页 */
isErrorBack: true
})
}
@@ -180,3 +182,12 @@ export const getLiveId = () => {
method: 'get'
})
}
/** 直播间列表 */
export const getLiveRoomList = data => {
return http({
url: `/api/service/imLiveRoom/list/all`,
method: 'get',
data
})
}