This commit is contained in:
bobobobo
2026-02-12 20:25:35 +08:00
parent 2191f46317
commit 2f1b592772
7 changed files with 158 additions and 21 deletions

View File

@@ -187,3 +187,11 @@ export const banUser = data => {
method: 'post'
})
}
/** 群禁言列表 */
export const getGroupBanList = id => {
return http({
url: `/api/service/imGroup/muted/account/${id}`,
method: 'get'
})
}