优化:将列表排序由按修改时间降序调整为按创建时间降序(避免修改后数据记录移动),将列表中的审计信息由“修改人”、“修改时间”调整展示为“创建人”、“创建时间”,后续涉及完整审计信息将在详情中统一展示

This commit is contained in:
2023-01-30 21:28:00 +08:00
parent 3075038067
commit 2c6bef91e8
6 changed files with 30 additions and 30 deletions

View File

@@ -8,8 +8,8 @@ export interface DeptRecord {
deptSort: number;
description: string;
status?: number;
updateUserString: string;
updateTime: string;
createUserString: string;
createTime: string;
children: Array<DeptRecord>,
}