This commit is contained in:
77
2024-04-17 23:09:14 +08:00
parent 76bcf110ce
commit 8637404f66
3 changed files with 122 additions and 5 deletions

View File

@@ -130,3 +130,44 @@ export function userBindInvite(userId,inviteUsercode) {
}
})
}
export function lockIm(userId) {
return request({
url: '/cai/user/lockIm',
method: 'get',
params:{
userId
}
})
}
export function unLockIm(userId) {
return request({
url: '/cai/user/unLockIm',
method: 'get',
params:{
userId
}
})
}
export function noSpeckIm(userId) {
return request({
url: '/cai/user/noSpeckIm',
method: 'get',
params:{
userId
}
})
}
export function enSpeckIm(userId) {
return request({
url: '/cai/user/enSpeckIm',
method: 'get',
params:{
userId
}
})
}