index.vue
12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="仓库" prop="warehouseCode">
<el-select
v-model="queryParams.warehouseCode"
placeholder="仓库"
clearable
size="small"
style="width: 240px"
>
<el-option
v-for="item in warehouseOptions"
:key="item.code"
:label="item.name"
:value="item.code"
/>
</el-select>
</el-form-item>
<el-form-item label="系统模块" prop="title">
<el-input
v-model="queryParams.title"
placeholder="请输入系统模块"
clearable
style="width: 240px"
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="操作人员" prop="operName">
<el-input
v-model="queryParams.operName"
placeholder="请输入操作人员"
clearable
style="width: 240px"
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="类型" prop="businessType">
<el-select
v-model="queryParams.businessType"
placeholder="操作类型"
clearable
size="small"
style="width: 240px"
>
<el-option
v-for="dict in typeOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="状态" prop="status">
<el-select
v-model="queryParams.status"
placeholder="操作状态"
clearable
size="small"
style="width: 240px"
>
<el-option
v-for="dict in statusOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="操作时间">
<el-date-picker
v-model="dateRange"
size="small"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button
type="cyan"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="warning"
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:operlog:export']"
:loading="exportLoading"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
:col-data="colData"
@selectData="selectData"
></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="list" ref="table">
<el-table-column
label="日志编号"
align="center"
prop="operId"
v-if="colData[0].istrue"
width="100"
/>
<el-table-column
label="仓库"
align="center"
prop="warehouseCode"
v-if="colData[1].istrue"
width="150"
:show-overflow-tooltip="true"
>
<template slot-scope="scope">
{{ warehouseCodeFormat(scope.row, scope.column) }}
</template>
</el-table-column>
<el-table-column
label="系统模块"
align="center"
prop="title"
:show-overflow-tooltip="true"
width="300"
v-if="colData[2].istrue"
/>
<el-table-column
label="操作类型"
align="center"
prop="businessType"
:formatter="typeFormat"
width="130"
v-if="colData[3].istrue"
/>
<el-table-column
label="请求方式"
align="center"
prop="requestMethod"
v-if="colData[4].istrue"
width="130"
/>
<el-table-column
label="请求地址"
align="center"
prop="operUrl"
width="250"
:show-overflow-tooltip="true"
v-if="colData[5].istrue"
/>
<el-table-column
label="操作类别"
align="center"
prop="operatorType"
width="100"
v-if="colData[6].istrue"
/>
<el-table-column
label="请求参数"
align="center"
prop="params"
width="150"
:show-overflow-tooltip="true"
v-if="colData[7].istrue"
/>
<el-table-column
label="操作人员"
align="center"
prop="operName"
width="150"
:show-overflow-tooltip="true"
v-if="colData[8].istrue"
/>
<el-table-column
label="主机"
align="center"
prop="operIp"
:show-overflow-tooltip="true"
width="180"
v-if="colData[9].istrue"
/>
<el-table-column
label="操作状态"
align="center"
prop="status"
width="150"
v-if="colData[10].istrue"
>
<template slot-scope="scope">
<el-button
size="mini"
:type="scope.row.status == 0 ? 'success' : 'danger'"
round
>{{ statusFormat(scope.row, scope.column) }}</el-button
>
</template>
</el-table-column>
<el-table-column
label="操作日期"
align="center"
prop="operTime"
width="200"
v-if="colData[11].istrue"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.operTime) }}</span>
</template>
</el-table-column>
<el-table-column
fixed="right"
label="操作"
align="center"
class-name="small-padding fixed-width"
min-width="120"
v-if="colData[12].istrue"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-view"
@click="handleView(scope.row, scope.index)"
v-hasPermi="['system:operlog:query']"
>详细</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 操作日志详细 -->
<el-dialog
title="操作日志详细"
:visible.sync="open"
width="700px"
append-to-body
>
<el-form ref="form" :model="form" label-width="100px" size="mini">
<el-row>
<el-col :span="12">
<el-form-item label="操作模块:"
>{{ form.title }} / {{ typeFormat(form) }}</el-form-item
>
<el-form-item label="登录信息:"
>{{ form.operName }} / {{ form.operIp }}</el-form-item
>
</el-col>
<el-col :span="12">
<el-form-item label="请求地址:">{{ form.operUrl }}</el-form-item>
<el-form-item label="请求方式:">{{
form.requestMethod
}}</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="操作方法:">{{ form.method }}</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="请求参数:">{{ form.operParam }}</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="返回参数:">{{
form.jsonResult
}}</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="操作状态:">
<div v-if="form.status === 0" style="color: green">正常</div>
<div v-else-if="form.status === 1" style="color: red">失败</div>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="操作时间:">{{
parseTime(form.operTime)
}}</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="异常信息:" v-if="form.status === 1">{{
form.errorMsg
}}</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="open = false">关 闭</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { list } from "@/api/system/operlog";
import { getWarehouseByUserCode } from "@/api/system/warehouse";
export default {
name: "Operlog",
data() {
return {
// 遮罩层
loading: true,
// 导出加载状态
exportLoading: false,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 表格数据
list: [],
// 是否显示弹出层
open: false,
// 类型数据字典
typeOptions: [],
// 类型数据字典
statusOptions: [],
// 仓库数据字典
warehouseOptions: [],
// 日期范围
dateRange: [],
// 表单参数
form: {},
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
warehouseCode: undefined,
title: undefined,
operName: undefined,
businessType: undefined,
status: undefined,
},
// istrue属性存放列的状态
colData: [
{ title: "日志编号", istrue: false },
{ title: "仓库", istrue: false },
{ title: "系统模块", istrue: true },
{ title: "操作类型", istrue: true },
{ title: "请求方式", istrue: true },
{ title: "请求地址", istrue: false },
{ title: "操作类别", istrue: false },
{ title: "请求参数", istrue: false },
{ title: "操作人员", istrue: true },
{ title: "主机", istrue: true },
{ title: "操作状态", istrue: true },
{ title: "操作日期", istrue: true },
{ title: "操作", istrue: true, disabled: true },
],
};
},
created() {
this.getList();
this.getDicts("sys_oper_type").then((response) => {
this.typeOptions = response.data;
});
this.getDicts("sys_common_status").then((response) => {
this.statusOptions = response.data;
});
getWarehouseByUserCode(this.$store.getters.name).then((response) => {
this.warehouseOptions = response.data;
});
},
beforeUpdate() {
this.$nextTick(() => {
this.$refs["table"].doLayout();
});
},
methods: {
/** 查询登录日志 */
getList() {
this.loading = true;
list(this.addDateRange(this.queryParams, this.dateRange)).then(
(response) => {
this.list = response.rows;
this.total = response.total;
this.loading = false;
}
);
},
// 操作日志状态字典翻译
statusFormat(row, column) {
return this.selectDictLabel(this.statusOptions, row.status);
},
// 操作日志类型字典翻译
typeFormat(row, column) {
return this.selectDictLabel(this.typeOptions, row.businessType);
},
// 仓库字典翻译
warehouseCodeFormat(row, column) {
return this.selectCommonLabel(this.warehouseOptions, row.warehouseCode);
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = [];
this.resetForm("queryForm");
this.handleQuery();
},
/** 详细按钮操作 */
handleView(row) {
this.open = true;
this.form = row;
},
/** 导出按钮操作 */
handleExport() {
this.exportLoading = true;
this.download(
"system/operlog/export",
{
...this.queryParams,
},
`操作日志_${this.formatTime(new Date(),'{y}-{m}-{d}')}.xlsx`
);
},
/** 表格切换字段显示操作 */
selectData(val) {
if (val) {
this.colData.filter((i) => {
if (val.indexOf(i.title) !== -1) {
i.istrue = true;
} else {
i.istrue = false;
}
});
}
},
},
};
</script>