src/api/system/user/types.ts | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/store/modules/user.ts | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/views/system/user/profile/thirdParty.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/api/system/user/types.ts
@@ -26,6 +26,7 @@ */ export interface UserVO extends BaseEntity { userId: string | number; tenantId: string; deptId: number; userName: string; nickName: string; src/store/modules/user.ts
@@ -10,6 +10,7 @@ const name = ref(''); const nickname = ref(''); const userId = ref<string | number>(''); const tenantId = ref<string>(''); const avatar = ref(''); const roles = ref<Array<string>>([]); // 用户角色编码集合 → 判断路由权限 const permissions = ref<Array<string>>([]); // 用户权限编码集合 → 判断按钮权限 @@ -49,6 +50,7 @@ nickname.value = user.nickName; avatar.value = profile; userId.value = user.userId; tenantId.value = user.tenantId; return Promise.resolve(); } return Promise.reject(err); 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); }