feat: 操作日志 排序查询

This commit is contained in:
dap
2024-10-10 08:27:56 +08:00
parent 493a0effe8
commit df79908056
2 changed files with 21 additions and 4 deletions

View File

@@ -78,10 +78,11 @@ export const columns: VxeGridProps['columns'] = [
},
},
},
{ field: 'operTime', title: '操作日期' },
{ field: 'operTime', title: '操作日期', sortable: true },
{
field: 'costTime',
title: '操作耗时',
sortable: true,
formatter({ cellValue }) {
return `${cellValue} ms`;
},