fix: SSO登录退出相关问题
This commit is contained in:
parent
88eee1d3f6
commit
f8cc98446e
|
@ -189,7 +189,10 @@ export default {
|
||||||
|
|
||||||
activated() {
|
activated() {
|
||||||
this.initTableData();
|
this.initTableData();
|
||||||
this.$router.replace({query: null})
|
// remove router query _token _csrf
|
||||||
|
if (this.$route.query && Object.keys(this.$route.query).length > 0) {
|
||||||
|
this.$router.replace({query: null});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
currentUser: () => {
|
currentUser: () => {
|
||||||
|
|
Loading…
Reference in New Issue