mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-10-12 12:57:12 +08:00
优化:将列表排序由按修改时间降序调整为按创建时间降序(避免修改后数据记录移动),将列表中的审计信息由“修改人”、“修改时间”调整展示为“创建人”、“创建时间”,后续涉及完整审计信息将在详情中统一展示
This commit is contained in:
@@ -369,12 +369,12 @@
|
||||
dataIndex: 'description',
|
||||
},
|
||||
{
|
||||
title: '修改人',
|
||||
dataIndex: 'updateUserString',
|
||||
title: '创建人',
|
||||
dataIndex: 'createUserString',
|
||||
},
|
||||
{
|
||||
title: '修改时间',
|
||||
dataIndex: 'updateTime',
|
||||
title: '创建时间',
|
||||
dataIndex: 'createTime',
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
@@ -502,8 +502,8 @@
|
||||
deptSort: 999,
|
||||
description: '',
|
||||
status: undefined,
|
||||
updateUserString: '',
|
||||
updateTime: '',
|
||||
createUserString: '',
|
||||
createTime: '',
|
||||
children: [],
|
||||
});
|
||||
const rules = computed((): Record<string, FieldRule[]> => {
|
||||
|
Reference in New Issue
Block a user