update 增加 用户信息缓存增加租户id

This commit is contained in:
疯狂的狮子Li
2024-06-18 22:54:30 +08:00
parent 4143285ec6
commit 3e7c2f26fa
3 changed files with 5 additions and 1 deletions

View File

@ -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 unlockAuth = (row: any) => {
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);
}