diff --git a/src/views/monitor/log/log.data.ts b/src/views/monitor/log/log.data.ts index f6233eb..b744bb9 100644 --- a/src/views/monitor/log/log.data.ts +++ b/src/views/monitor/log/log.data.ts @@ -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[] = [