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'),