From 75fc0f1cf0da8af4524ce311b0140a40199a57c4 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Sun, 26 Sep 2021 13:37:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8F=8A=E6=97=B6=E5=88=A0=E9=99=A4oidc?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E4=BF=A1=E6=81=AFcookie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/login/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/views/login/index.vue b/frontend/src/views/login/index.vue index 2b9bb297e2..9bc7ec3c83 100644 --- a/frontend/src/views/login/index.vue +++ b/frontend/src/views/login/index.vue @@ -138,6 +138,7 @@ export default { } }, handleLogin() { + Cookies.remove('OidcError') this.$refs.loginForm.validate(valid => { if (valid) { this.loading = true @@ -160,6 +161,7 @@ export default { }, changeLoginType(val) { if (val !== 2) return + Cookies.remove('OidcError') this.$nextTick(() => { })