优化:社交登录、用户的管理

(cherry picked from commit a9b91e7436)
This commit is contained in:
YunaiV
2023-11-04 14:37:23 +08:00
committed by shizhong
parent f575ddacea
commit 98fc2fe327
7 changed files with 97 additions and 225 deletions

View File

@ -22,13 +22,3 @@ export const getSocialUserPage = async (params) => {
export const getSocialUser = async (id: number) => {
return await request.get({ url: `/system/social-user/get?id=` + id })
}
// 修改社交用户
export const updateSocialUser = async (data: SocialUserVO) => {
return await request.put({ url: `/system/social-user/update`, data })
}
// 删除社交用户
export const deleteSocialUser = async (id: number) => {
return await request.delete({ url: `/system/social-user/delete?id=` + id })
}