兰宝车间质量管理系统-前端
疯狂的狮子Li
2024-06-18 3e7c2f26fa1bfed32ad8e00919edf3ab71930fe4
update 增加 用户信息缓存增加租户id
已修改3个文件
6 ■■■■ 文件已修改
src/api/system/user/types.ts 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/store/modules/user.ts 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/user/profile/thirdParty.vue 3 ●●●● 补丁 | 查看 | 原始文档 | 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);
    }