feat(log、post、user、project、work-report): 添加用户姓名字段并实现岗位用户导出功能
- 在API访问日志、API错误日志中新增用户姓名字段显示 - 优化日志管理页面布局样式,修复高度自适应问题 - 添加系统岗位数据导出功能及相应API接口 - 添加系统用户数据导出功能及相应API接口 - 新增通用文件下载和导出文件名生成工具函数 - 修复工作报表删除确认提示文案 - 调整项目列表默认展开状态逻辑 - 完善岗位和用户管理页面导出按钮权限控制 - 更新日志实体类型定义,增加用户昵称字段
This commit is contained in:
2
src/typings/api/system-log.d.ts
vendored
2
src/typings/api/system-log.d.ts
vendored
@@ -77,6 +77,7 @@ declare namespace Api {
|
||||
id: string;
|
||||
traceId?: string | null;
|
||||
userId: string;
|
||||
userNickname?: string | null;
|
||||
userType: number;
|
||||
applicationName: string;
|
||||
requestMethod: string;
|
||||
@@ -114,6 +115,7 @@ declare namespace Api {
|
||||
id: string;
|
||||
traceId?: string | null;
|
||||
userId: string;
|
||||
userNickname?: string | null;
|
||||
userType: number;
|
||||
applicationName: string;
|
||||
requestMethod: string;
|
||||
|
||||
Reference in New Issue
Block a user