Skip to content

Commit ecdbbec

Browse files
committed
🎨 日志展示列微调
1 parent 934e450 commit ecdbbec

File tree

2 files changed

+37
-24
lines changed

2 files changed

+37
-24
lines changed

src/views/log/adminaccesslog/AdminAccessLogPage.vue

+9-5
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@ export default {
7878
title: '追踪ID',
7979
dataIndex: 'traceId',
8080
},
81-
{
82-
title: '用户ID',
83-
dataIndex: 'userId',
84-
},
8581
{
8682
title: '用户名',
8783
dataIndex: 'username',
@@ -110,6 +106,9 @@ export default {
110106
{
111107
title: '执行时长',
112108
dataIndex: 'time',
109+
customRender: function (text){
110+
return text + ' ms'
111+
}
113112
},
114113
{
115114
title: '创建时间',
@@ -120,6 +119,11 @@ export default {
120119
]
121120
}
122121
},
123-
methods: {}
122+
methods: {
123+
onTimeChange (dates, dateStrings) {
124+
this.queryParam.startTime = dateStrings[0]
125+
this.queryParam.endTime = dateStrings[1]
126+
}
127+
}
124128
}
125129
</script>

src/views/log/adminoperationlog/AdminOperationLogPage.vue

+28-19
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
</dict-text>
5252
</template>
5353
<template #expandedRowRender="record">
54-
<p>params:</p>
55-
<pre><div class="wordwrap" v-html="record.params"></div></pre>
56-
<p>userAgent:</p>
57-
{{record.userAgent}}}
54+
<p>params:</p>
55+
<pre><div class="wordwrap" v-html="record.params"></div></pre>
56+
<p>userAgent:</p>
57+
{{ record.userAgent }}}
5858
</template>
5959
</a-table>
6060
</div>
@@ -69,53 +69,57 @@ import { TablePageMixin } from '@/mixins'
6969
export default {
7070
name: 'AdminOperationLogPage',
7171
mixins: [TablePageMixin],
72-
data() {
72+
data () {
7373
return {
7474
getPage: getPage,
7575
7676
columns: [
7777
{
7878
title: '#',
79-
dataIndex: 'id',
79+
dataIndex: 'id'
8080
},
8181
{
8282
title: '追踪ID',
83-
dataIndex: 'traceId',
83+
dataIndex: 'traceId'
8484
},
8585
{
8686
title: '日志消息',
87-
dataIndex: 'msg',
87+
dataIndex: 'msg'
8888
},
8989
{
9090
title: '操作类型',
9191
dataIndex: 'type',
9292
scopedSlots: { customRender: 'type-slot' }
9393
},
9494
{
95-
title: '访问IP地址',
95+
title: '请求IP',
9696
dataIndex: 'ip',
97+
width: '105px'
9798
},
9899
{
99100
title: '请求URI',
100-
dataIndex: 'uri',
101+
dataIndex: 'uri'
101102
},
102103
{
103104
title: '请求方式',
104-
dataIndex: 'method',
105-
},
106-
{
107-
title: '操作状态',
108-
dataIndex: 'status',
109-
width: '50px',
110-
scopedSlots: { customRender: 'status-slot' }
105+
dataIndex: 'method'
111106
},
112107
{
113108
title: '执行时长',
114109
dataIndex: 'time',
110+
customRender: function (text) {
111+
return text + ' ms'
112+
}
115113
},
116114
{
117115
title: '操作人',
118-
dataIndex: 'operator',
116+
dataIndex: 'operator'
117+
},
118+
{
119+
title: '操作状态',
120+
dataIndex: 'status',
121+
width: '50px',
122+
scopedSlots: { customRender: 'status-slot' }
119123
},
120124
{
121125
title: '创建时间',
@@ -126,7 +130,12 @@ export default {
126130
]
127131
}
128132
},
129-
methods: {}
133+
methods: {
134+
onTimeChange (dates, dateStrings) {
135+
this.queryParam.startTime = dateStrings[0]
136+
this.queryParam.endTime = dateStrings[1]
137+
}
138+
}
130139
}
131140
</script>
132141

0 commit comments

Comments
 (0)