File tree 2 files changed +37
-24
lines changed
2 files changed +37
-24
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,6 @@ export default {
78
78
title: ' 追踪ID' ,
79
79
dataIndex: ' traceId' ,
80
80
},
81
- {
82
- title: ' 用户ID' ,
83
- dataIndex: ' userId' ,
84
- },
85
81
{
86
82
title: ' 用户名' ,
87
83
dataIndex: ' username' ,
@@ -110,6 +106,9 @@ export default {
110
106
{
111
107
title: ' 执行时长' ,
112
108
dataIndex: ' time' ,
109
+ customRender : function (text ){
110
+ return text + ' ms'
111
+ }
113
112
},
114
113
{
115
114
title: ' 创建时间' ,
@@ -120,6 +119,11 @@ export default {
120
119
]
121
120
}
122
121
},
123
- methods: {}
122
+ methods: {
123
+ onTimeChange (dates , dateStrings ) {
124
+ this .queryParam .startTime = dateStrings[0 ]
125
+ this .queryParam .endTime = dateStrings[1 ]
126
+ }
127
+ }
124
128
}
125
129
</script >
Original file line number Diff line number Diff line change 51
51
</dict-text >
52
52
</template >
53
53
<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 }}}
58
58
</template >
59
59
</a-table >
60
60
</div >
@@ -69,53 +69,57 @@ import { TablePageMixin } from '@/mixins'
69
69
export default {
70
70
name: ' AdminOperationLogPage' ,
71
71
mixins: [TablePageMixin],
72
- data () {
72
+ data () {
73
73
return {
74
74
getPage: getPage,
75
75
76
76
columns: [
77
77
{
78
78
title: ' #' ,
79
- dataIndex: ' id' ,
79
+ dataIndex: ' id'
80
80
},
81
81
{
82
82
title: ' 追踪ID' ,
83
- dataIndex: ' traceId' ,
83
+ dataIndex: ' traceId'
84
84
},
85
85
{
86
86
title: ' 日志消息' ,
87
- dataIndex: ' msg' ,
87
+ dataIndex: ' msg'
88
88
},
89
89
{
90
90
title: ' 操作类型' ,
91
91
dataIndex: ' type' ,
92
92
scopedSlots: { customRender: ' type-slot' }
93
93
},
94
94
{
95
- title: ' 访问IP地址 ' ,
95
+ title: ' 请求IP ' ,
96
96
dataIndex: ' ip' ,
97
+ width: ' 105px'
97
98
},
98
99
{
99
100
title: ' 请求URI' ,
100
- dataIndex: ' uri' ,
101
+ dataIndex: ' uri'
101
102
},
102
103
{
103
104
title: ' 请求方式' ,
104
- dataIndex: ' method' ,
105
- },
106
- {
107
- title: ' 操作状态' ,
108
- dataIndex: ' status' ,
109
- width: ' 50px' ,
110
- scopedSlots: { customRender: ' status-slot' }
105
+ dataIndex: ' method'
111
106
},
112
107
{
113
108
title: ' 执行时长' ,
114
109
dataIndex: ' time' ,
110
+ customRender : function (text ) {
111
+ return text + ' ms'
112
+ }
115
113
},
116
114
{
117
115
title: ' 操作人' ,
118
- dataIndex: ' operator' ,
116
+ dataIndex: ' operator'
117
+ },
118
+ {
119
+ title: ' 操作状态' ,
120
+ dataIndex: ' status' ,
121
+ width: ' 50px' ,
122
+ scopedSlots: { customRender: ' status-slot' }
119
123
},
120
124
{
121
125
title: ' 创建时间' ,
@@ -126,7 +130,12 @@ export default {
126
130
]
127
131
}
128
132
},
129
- methods: {}
133
+ methods: {
134
+ onTimeChange (dates , dateStrings ) {
135
+ this .queryParam .startTime = dateStrings[0 ]
136
+ this .queryParam .endTime = dateStrings[1 ]
137
+ }
138
+ }
130
139
}
131
140
</script >
132
141
You can’t perform that action at this time.
0 commit comments