From c6b530b236a37c875a30d3085d466b69736e3197 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Thu, 8 Aug 2024 12:02:09 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E6=97=A5=E5=BF=97=E4=B8=AD=E5=BF=83?= =?UTF-8?q?=E7=BF=BB=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/log/LoginLogList.vue | 11 ++++++++++- src/views/system/log/OperatorLogList.vue | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/views/system/log/LoginLogList.vue b/src/views/system/log/LoginLogList.vue index 655386f..7ccfc9a 100644 --- a/src/views/system/log/LoginLogList.vue +++ b/src/views/system/log/LoginLogList.vue @@ -43,6 +43,14 @@ :loading="loading" @change="handleTableChange"> + + + @@ -112,7 +120,8 @@ export default { { title: this.$t('log.logType'), dataIndex: 'logType_dictText', - align: 'center' + align: 'center', + scopedSlots: { customRender: 'dictText' } }, { title: this.$t('createTime'), diff --git a/src/views/system/log/OperatorLogList.vue b/src/views/system/log/OperatorLogList.vue index 9c688cd..43763f4 100644 --- a/src/views/system/log/OperatorLogList.vue +++ b/src/views/system/log/OperatorLogList.vue @@ -48,6 +48,14 @@ :loading="loading" @change="handleTableChange"> + + +
{{ $t('log.requestMethod') }}:{{ record.method }}
{{ $t('log.requestParam') }}:{{ record.requestParam }}
@@ -127,7 +135,8 @@ export default { { title: this.$t('log.logType'), dataIndex: 'logType_dictText', - align: 'center' + align: 'center', + scopedSlots: { customRender: 'dictText' } }, { title: this.$t('createTime'),