mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 09:11:52 +08:00
【修复】钉钉登录时,重定向后 type 丢失导致报错的问题
This commit is contained in:
parent
3cd256f7f2
commit
7093ed3997
@ -258,7 +258,8 @@ export default {
|
|||||||
// 设置登录中
|
// 设置登录中
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
// 计算 redirectUri
|
// 计算 redirectUri
|
||||||
const redirectUri = location.origin + '/social-login?type=' + socialTypeEnum.type + '&redirect=' + (this.redirect || "/"); // 重定向不能丢
|
const redirectUri = location.origin + '/social-login?'
|
||||||
|
+ encodeURIComponent('type=' + socialTypeEnum.type + '&redirect=' + (this.redirect || "/")); // 重定向不能丢
|
||||||
// const redirectUri = 'http://127.0.0.1:48080/api/gitee/callback';
|
// const redirectUri = 'http://127.0.0.1:48080/api/gitee/callback';
|
||||||
// const redirectUri = 'http://127.0.0.1:48080/api/dingtalk/callback';
|
// const redirectUri = 'http://127.0.0.1:48080/api/dingtalk/callback';
|
||||||
// 进行跳转
|
// 进行跳转
|
||||||
|
@ -104,24 +104,19 @@ export default {
|
|||||||
state: undefined,
|
state: undefined,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
// watch: {
|
|
||||||
// $route: {
|
|
||||||
// handler: function(route) {
|
|
||||||
// this.redirect = route.query && route.query.redirect;
|
|
||||||
// },
|
|
||||||
// immediate: true
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
created() {
|
created() {
|
||||||
this.getCookie();
|
this.getCookie();
|
||||||
// 验证码开关
|
// 验证码开关
|
||||||
this.captchaEnable = getCaptchaEnable();
|
this.captchaEnable = getCaptchaEnable();
|
||||||
// 重定向地址
|
// 重定向地址
|
||||||
this.redirect = this.$route.query.redirect ? decodeURIComponent(this.$route.query.redirect) : undefined;
|
this.redirect = this.getUrlValue('redirect');
|
||||||
// 社交登录相关
|
// 社交登录相关
|
||||||
this.type = this.$route.query.type;
|
this.type = this.getUrlValue('type');
|
||||||
this.code = this.$route.query.code;
|
this.code = this.$route.query.code;
|
||||||
this.state = this.$route.query.state;
|
this.state = this.$route.query.state;
|
||||||
|
|
||||||
|
// 尝试登录一下
|
||||||
|
this.loading = true;
|
||||||
this.$store.dispatch("SocialLogin", {
|
this.$store.dispatch("SocialLogin", {
|
||||||
code: this.code,
|
code: this.code,
|
||||||
state: this.state,
|
state: this.state,
|
||||||
@ -183,6 +178,10 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
getUrlValue(key) {
|
||||||
|
const url = new URL(decodeURIComponent(location.href));
|
||||||
|
return url.searchParams.get(key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user