From d1b58f0aaace06a8c6d5619a2b9abadca6456475 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期一, 24 六月 2024 14:59:46 +0800 Subject: [PATCH] fix 修复 单词拼写错误 --- src/views/system/user/profile/thirdParty.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/system/user/profile/thirdParty.vue b/src/views/system/user/profile/thirdParty.vue index ad090c4..957122a 100644 --- a/src/views/system/user/profile/thirdParty.vue +++ b/src/views/system/user/profile/thirdParty.vue @@ -84,9 +84,9 @@ }; const authUrl = (source: string) => { - authBinding(source).then((res: any) => { + authBinding(source, useUserStore().tenantId).then((res: any) => { if (res.code === 200) { - window.location.href = res.data + '&tenantId=' + useUserStore().tenantId + '&domain=' + window.location.host; + window.location.href = res.data; } else { proxy?.$modal.msgError(res.msg); } -- Gitblit v1.9.3