user.ts 902 Bytes
import { requestClient } from '#/api/request';

export interface Role {
  dataScope: string;
  flag: boolean;
  roleId: number;
  roleKey: string;
  roleName: string;
  roleSort: number;
  status: string;
  superAdmin: boolean;
}

export interface User {
  avatar: string;
  creationTime: string;
  deptId: number;
  deptName: string;
  email: string;
  loginDate: string;
  loginIp: string;
  nick: string;
  phone: string;
  remark: string;
  roles: Role[];
  sex: string;
  status: string;
  tenantId: string;
  userId: number;
  userName: string;
  userType: string;
}

export interface UserInfoResp {
  permissionCodes: string[];
  roles: string[];
  roleCodes: string[];
  user: User;
}

/**
 * 获取用户信息
 * 存在返回null的情况(401) 不会抛出异常 需要手动抛异常
 */
export async function getUserInfoApi() {
  return requestClient.get<null | UserInfoResp>('account');
}