diff --git a/src/components/table/settings/OperationLogTable.vue b/src/components/table/settings/OperationLogTable.vue
index cb2919de..b0cd5165 100644
--- a/src/components/table/settings/OperationLogTable.vue
+++ b/src/components/table/settings/OperationLogTable.vue
@@ -4,6 +4,7 @@
ref="dataTable"
:data="tableData"
:height="height"
+ tooltip-effect="light"
border
class="no-operation"
@header-dragend="dragend"
@@ -27,17 +28,32 @@
:sort-orders="['ascending', 'descending']"
:width="`${item.width}`"
class="data-column"
+ :show-overflow-tooltip="['params', 'response'].indexOf(item.prop) > -1"
>
{{item.label}}
-
- {{scope.row[item.prop]}} ms
+
+ {{scope.row[item.prop]}}ms
+
+
+ {{$t('operationLog.state.success')}}
+
+
+ {{$t('operationLog.state.fail')}}
+
+
+ {{scope.row[item.prop]}}
+
+
{{formatUsername(scope.row)}}
{{utcTimeToSysTime(scope.row[item.prop])}}
+
+ {{scope.row[item.prop]}}
+
{{scope.row[item.prop]}}
@@ -46,11 +62,14 @@