mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 00:45:55 +08:00
[功能]:1、跳转url 放到配置文件里面 2、优化登录管理界面 3、添加qq登录解绑和重新绑定功能 4、个人中心增加 qq绑定信息 展示view
This commit is contained in:
@@ -42,3 +42,27 @@ export function delPlatform(socialPlatformId) {
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
//解除绑定
|
||||
export function unbind(socialUserId){
|
||||
return request({
|
||||
url: '/iot/social/unbind/' + socialUserId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//绑定跳转
|
||||
export function bind(platform){
|
||||
return request({
|
||||
url: '/iot/social/bind/' + platform,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
//绑定
|
||||
export function bindUser(bindId){
|
||||
return request({
|
||||
url: '/iot/social/bindId/' + bindId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user