diff --git a/src/api/user.ts b/src/api/user.ts index 58696b6655..a0c43e00c0 100644 --- a/src/api/user.ts +++ b/src/api/user.ts @@ -3,8 +3,12 @@ import { http } from "@/utils/http"; export type UserResult = { success: boolean; data: { + /** 头像 */ + avatar: string; /** 用户名 */ username: string; + /** 昵称 */ + nickname: string; /** 当前登录用户的角色 */ roles: Array; /** `token` */