From a148ed45065eb020a4c6c2ed08e704698c67d237 Mon Sep 17 00:00:00 2001 From: wsm <2746563060@qq.com> Date: Wed, 5 Aug 2026 15:57:42 +0800 Subject: [PATCH] =?UTF-8?q?feat(syslog):=20=E6=93=8D=E4=BD=9C=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E5=88=97=E8=A1=A8=E6=96=B0=E5=A2=9E=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E7=BB=93=E6=9E=9C=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/monitor/log/log.data.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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[] = [