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

Merge pull request !136 from wsm/chroe/log_api_add
This commit is contained in:
wsm
2026-08-05 07:59:09 +00:00
committed by Gitee
+6
View File
@@ -50,6 +50,12 @@ export const operationLogColumn: BasicColumn[] = [
dataIndex: 'operateType_dictText', dataIndex: 'operateType_dictText',
width: 40, width: 40,
}, },
{
title: '操作结果',
dataIndex: 'operateResult',
width: 40,
customRender: ({ text }) => (text == 1 ? '成功' : text == 0 ? '失败' : '-'),
},
]; ];
export const exceptionColumns: BasicColumn[] = [ export const exceptionColumns: BasicColumn[] = [