From 7406226e682f81b2892e6ee60bd9e25d7423c6eb Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 19 Nov 2024 21:24:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(auth):=20=E5=88=9D=E5=A7=8B=E5=8C=96?= =?UTF-8?q?=E8=AE=A4=E8=AF=81=E8=A1=A8=E5=8D=95=E6=97=B6=E6=8F=90=E4=BE=9B?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=80=BC=E4=BB=A5=E9=81=BF=E5=85=8D=E7=A9=BA?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dialog/UserAuthDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dialog/UserAuthDialog.vue b/src/components/dialog/UserAuthDialog.vue index c222256a..604b7f66 100644 --- a/src/components/dialog/UserAuthDialog.vue +++ b/src/components/dialog/UserAuthDialog.vue @@ -61,7 +61,7 @@ async function loadLastAuthParams() { try { const result: { [key: string]: any } = await api.get(`system/setting/UserSiteAuthParams`) if (result.success) { - authForm.value = result.data?.value || {} + authForm.value = result.data?.value || { site: null, params: {} } } } catch (e) { console.error(e)