From 0a26d58a3906b9e13946c7cb46fae51a0de98920 Mon Sep 17 00:00:00 2001 From: Crunchy <3114200645@qq.com> Date: 星期一, 17 三月 2025 15:49:08 +0800 Subject: [PATCH] Merge branch 'dev' into dev_tides --- src/views/login.vue | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/views/login.vue b/src/views/login.vue index 2590586..00dd1ea 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -96,11 +96,9 @@ }, methods: { async goLogin() { - const { - data: { data }, - } = await getSsoAuthUrl() - window.location.href = data - // this.$router.push({ path: '/thirdpartylogin' }) + await getSsoAuthUrl().then(res => { + window.location.href = res.data + }) }, getCode() { getCodeImg().then(res => { -- Gitblit v1.9.3