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
<template>
<div class="app-content">
<a-form :form="form" :model="searchForm" ref="formRef" layout="inline" class="search_form">
<a-form-item label="关键字">
<a-select :key="searchForm.logKey" :value="searchForm.logKey" @change="selectLogKeyChange" style="width:200px;">
<a-select-option :value="item.key" v-for="(item) in logKeys" :key="item.key">
{{ item.title }}
</a-select-option>
</a-select>
</a-form-item>
<a-form-item label="ip">
<a-input v-model="searchForm.ipAddress" placeholder="用户IP"></a-input>
</a-form-item>
<a-form-item>
<a-button type="primary" icon="search" @click="search">搜索</a-button>
<a-button icon="reload" style="margin-left: 10px" @click="reset" class="bt-normal">重置</a-button>
</a-form-item>
</a-form>
<a-table :dataSource="tableData" :columns="columns" rowKey="id" :pagination="false" :loading="loading">
</a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
</div>
</template>
<script>
import { isEmptyParams } from "@/views/utils/common"
export default {
name: 'logsOperation',
data () {
return {
form: this.$form.createForm(this, { name: 'advanced_search' }),
searchForm: { logKey: '', ipAddress: '' },
tableData: [],
columns: [
{ title: '用户id', dataIndex: 'customerId' },
{ title: '关键字', dataIndex: 'logKeyName' },
{ title: '日志内容', dataIndex: 'logParam', ellipsis: true, width: 200 },
{ title: '请求地址', dataIndex: 'requestUrl' },
{ title: '浏览器', dataIndex: 'browser' },
{ title: 'IP地址', dataIndex: 'ipAddress' },
{ title: '创建时间', dataIndex: 'created' }
],
loading: false,
pagination: { pageIndex: 1, pageSize: this.$defaultPageSize, total: 0, pageSizeOptions: this.$defaultPageSizeOptions, },
logKeys: []
}
},
created () {
this.getLogKeyList()
this.getListByPage()
},
methods: {
getLogKeyList () { //获取日志关键字
if (this.logKeys && this.logKeys.length) {
return
} else {
this.$api.log.getOperationLogType().then(({ data = {} }) => {
if (data) {
this.logKeys = data
}
}).catch(() => { })
}
},
selectLogKeyChange (value) {//关键字变更
this.searchForm.logKey = value
},
getListByPage () {//分页列表
this.loading = true
let pars = isEmptyParams(this.searchForm)
let par = { ...pars, pageIndex: this.pagination.pageIndex, pageSize: this.pagination.pageSize }
this.$api.log.getOperationListByPage(par).then(({ data = {} }) => {
if (data) {
const { dataList = [], total = 0 } = data
this.tableData = dataList
this.pagination.total = total
}
this.loading = false
}).catch(() => { this.loading = false })
},
change () {
this.getListByPage()
},
showSizeChange (current, pageSize) {
this.pagination.pageIndex = current
this.pagination.pageSize = pageSize
this.getListByPage()
},
search () {
this.pagination.pageIndex = 1
this.getListByPage()
},
reset () {
this.searchForm = { logKey: '', ipAddress: '' }
this.pagination.pageIndex = 1
this.getListByPage()
},
}
}
</script>