feat(syslog): 操作日志列表新增操作结果列

This commit is contained in:
wsm
2026-08-05 15:57:42 +08:00
parent dc6ee86693
commit a148ed4506
+6
View File
@@ -50,6 +50,12 @@ export const operationLogColumn: BasicColumn[] = [
dataIndex: 'operateType_dictText',
width: 40,
},
{
title: '操作结果',
dataIndex: 'operateResult',
width: 40,
customRender: ({ text }) => (text == 1 ? '成功' : text == 0 ? '失败' : '-'),
},
];
export const exceptionColumns: BasicColumn[] = [