feat(profile): 实现用户个人中心页面及头像上传功能

添加用户个人中心页面,包含基本信息展示和头像上传功能。主要修改包括:
1. 新增 UserProfileView 页面组件
2. 扩展用户信息接口和类型定义
3. 添加文件上传和头像更新API
4. 配置Vite代理以支持文件服务
5. 添加相关依赖(spark-md5, json-bigint)
This commit is contained in:
2026-01-12 01:41:22 +08:00
parent f18c9cdc8d
commit 3b6fb0cae1
10 changed files with 543 additions and 10 deletions

12
src/store/types.d.ts vendored
View File

@@ -1,5 +1,13 @@
export interface LoginUesr {
userName: string;
id?: number;
userName?: string;
userAccount?: string;
userAvatar?: string;
userRole?: string;
}
userProfile?: string;
userEmail?: string;
createTime?: string;
updateTime?: string;
[key: string]: any;
}