feat: 蓝星登录

This commit is contained in:
caijun
2026-01-23 11:09:28 +08:00
parent 2195b230ed
commit 686bf339ae
6 changed files with 112 additions and 25 deletions

View File

@@ -237,6 +237,18 @@ export function getPermissionInfo() {
method: 'GET'
})
}
// 获取token
export function socialLogin(token) {
return request({
url: '/admin-api/system/auth/social-login',
method: 'post',
token,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
}
})
}
// 账号注销
export function accountCancel(token) {
return request({