feat(syslog): 操作日志列表新增操作结果列
This commit is contained in:
@@ -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[] = [
|
||||
|
||||
Reference in New Issue
Block a user