mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-07 17:38:32 +08:00
刷新state
This commit is contained in:
parent
3b47bd6625
commit
d9457dea72
@ -102,6 +102,13 @@ export class UserLoginComponent implements OnInit, OnDestroy {
|
||||
|
||||
//init socials,state
|
||||
this.authnService.clear();
|
||||
|
||||
this.get();
|
||||
|
||||
this.cdr.detectChanges();
|
||||
}
|
||||
|
||||
get() {
|
||||
this.authnService
|
||||
.get({ remember_me: localStorage.getItem(CONSTS.REMEMBER) })
|
||||
.pipe(
|
||||
@ -141,7 +148,6 @@ export class UserLoginComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
}
|
||||
});
|
||||
this.cdr.detectChanges();
|
||||
}
|
||||
|
||||
congressLogin(congress: string) {
|
||||
@ -343,6 +349,8 @@ export class UserLoginComponent implements OnInit, OnDestroy {
|
||||
this.authnService.navigate({});
|
||||
} else if (res.code === 20004) {
|
||||
this.qrexpire = true;
|
||||
} else if (res.code === 20005) {
|
||||
this.get()
|
||||
}
|
||||
|
||||
// Handle response here
|
||||
|
||||
@ -314,9 +314,9 @@ public class LoginEntryPoint {
|
||||
} catch (BusinessException businessException) {
|
||||
return new Message<>(businessException.getCode(), businessException.getMessage());
|
||||
}
|
||||
} else {
|
||||
return new Message<>(20005, "state失效重新获取");
|
||||
}
|
||||
|
||||
return new Message<>(Message.FAIL);
|
||||
}
|
||||
|
||||
@Operation(summary = "app扫描二维码", description = "扫描二维码登录", method = "POST")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user