sunyongyan 2024-08-29 15:45:02 +08:00
parent 0300cf037f
commit 767c3a325d
1 changed files with 10 additions and 0 deletions

10
api/banned/banned.js Normal file
View File

@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查看禁言天数和原因
export function getBanned(userId) {
return request({
url: '/FriendMute/FriendMute/getMuteInfo',
method: 'get',
params: { userId }
});
}