From 3e7c2f26fa1bfed32ad8e00919edf3ab71930fe4 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期二, 18 六月 2024 22:54:30 +0800 Subject: [PATCH] update 增加 用户信息缓存增加租户id --- src/views/system/user/profile/thirdParty.vue | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/views/system/user/profile/thirdParty.vue b/src/views/system/user/profile/thirdParty.vue index 40daa86..3d489b4 100644 --- a/src/views/system/user/profile/thirdParty.vue +++ b/src/views/system/user/profile/thirdParty.vue @@ -58,6 +58,7 @@ <script lang="ts" setup> import { authUnlock, authBinding } from '@/api/system/social/auth'; import { propTypes } from '@/utils/propTypes'; +import useUserStore from "@/store/modules/user"; const { proxy } = getCurrentInstance() as ComponentInternalInstance; @@ -85,7 +86,7 @@ const authUrl = (source: string) => { authBinding(source).then((res: any) => { if (res.code === 200) { - window.location.href = res.data; + window.location.href = res.data + '&tenantId=' + useUserStore().tenantId; } else { proxy?.$modal.msgError(res.msg); } -- Gitblit v1.9.3