311 lines
11 KiB
Vue
311 lines
11 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
||
<el-form-item label="系统模块" prop="title">
|
||
<el-input v-model="queryParams.title" placeholder="请输入系统模块" clearable @keyup.enter="handleQuery" />
|
||
</el-form-item>
|
||
<el-form-item label="操作人员" prop="operName">
|
||
<el-input v-model="queryParams.operName" placeholder="请输入操作人员" clearable @keyup.enter="handleQuery" />
|
||
</el-form-item>
|
||
<el-form-item label="业务类型" prop="businessType">
|
||
<el-select v-model="queryParams.businessType" placeholder="操作类型" clearable>
|
||
<el-option v-for="dict in options.businessTypeOptions" :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>
|
||
<el-option v-for="dict in options.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"
|
||
type="daterange"
|
||
range-separator="-"
|
||
start-placeholder="开始日期"
|
||
end-placeholder="结束日期"
|
||
:shortcuts="dateOptions"></el-date-picker>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button type="primary" icon="search" @click="handleQuery">搜索</el-button>
|
||
<el-button icon="refresh" @click="resetQuery">重置</el-button>
|
||
</el-form-item>
|
||
</el-form>
|
||
|
||
<el-row :gutter="10" class="mb8">
|
||
<el-col :span="1.5">
|
||
<el-button type="danger" plain icon="delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['monitor:operlog:remove']">
|
||
删除
|
||
</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5">
|
||
<el-button type="danger" plain icon="delete" @click="handleClean" v-hasPermi="['monitor:operlog:remove']">清空</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5">
|
||
<el-button type="warning" plain icon="download" @click="handleExport" v-hasPermi="['system:operlog:export']">导出 </el-button>
|
||
</el-col>
|
||
<right-toolbar :showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||
</el-row>
|
||
|
||
<el-table v-loading="loading" :data="list" @selection-change="handleSelectionChange">
|
||
<el-table-column type="selection" width="50" align="center" />
|
||
<el-table-column label="编号" align="center" prop="operId" width="60px" :show-overflow-tooltip="true" />
|
||
<el-table-column label="系统模块" align="center" prop="title" :show-overflow-tooltip="true" />
|
||
<el-table-column prop="businessType" label="业务类型" align="center">
|
||
<template #default="scope">
|
||
<dict-tag :options="options.businessTypeOptions" :value="scope.row.businessType" />
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="请求方式" align="center" prop="requestMethod" />
|
||
<el-table-column label="操作人员" align="center" prop="operName" />
|
||
<el-table-column label="主机" align="center" prop="operIp" width="130" :show-overflow-tooltip="true" />
|
||
<el-table-column label="操作地点" align="center" prop="operLocation" :show-overflow-tooltip="true" />
|
||
<el-table-column label="操作状态" align="center" prop="status">
|
||
<template #default="{ row }">
|
||
<dict-tag :options="options.statusOptions" :value="row.status"></dict-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="用时" align="center" prop="elapsed">
|
||
<template #default="scope">
|
||
<span :style="scope.row.elapsed < 1000 ? 'color:green' : scope.row.elapsed < 3000 ? 'color:orange' : 'color:red'">
|
||
{{ scope.row.elapsed }} ms
|
||
</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="日志内容" align="center" prop="errorMsg" :show-overflow-tooltip="true" />
|
||
<el-table-column label="操作日期" align="center" prop="operTime" width="180">
|
||
<template #default="scope">
|
||
<span>{{ scope.row.operTime }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||
<template #default="scope">
|
||
<el-button size="small" text icon="view" @click="handleView(scope.row, scope.index)" v-hasPermi="['monitor:operlog:query']">
|
||
详细
|
||
</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
|
||
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||
|
||
<!-- 操作日志详细 -->
|
||
<el-dialog title="操作日志详细" v-model="open" width="700px" append-to-body>
|
||
<el-form ref="formRef" :model="form" label-width="100px">
|
||
<el-row>
|
||
<el-col :lg="12">
|
||
<el-form-item label="操作模块:">{{ form.title }} </el-form-item>
|
||
<el-form-item label="登录信息:">{{ form.operName }} / {{ form.operIp }} / {{ form.operLocation }}</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="12">
|
||
<el-form-item label="请求地址:">{{ form.operUrl }}</el-form-item>
|
||
<el-form-item label="请求方式:">{{ form.requestMethod }}</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="12">
|
||
<el-form-item label="操作方法:">{{ form.method }}</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="12">
|
||
<el-form-item label="操作类型:">
|
||
<dict-tag :options="options.businessTypeOptions" :value="form.businessType" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="24">
|
||
<el-form-item label="请求参数:">
|
||
<el-input type="textarea" disabled rows="5" v-model="form.operParam"> </el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="24">
|
||
<el-form-item label="返回结果:">
|
||
<el-input type="textarea" disabled rows="5" v-model="form.jsonResult"> </el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="12">
|
||
<el-form-item label="操作状态:">
|
||
<dict-tag :options="options.statusOptions" :value="form.status"></dict-tag>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="12">
|
||
<el-form-item label="操作时间:">{{ parseTime(form.operTime) }}</el-form-item>
|
||
</el-col>
|
||
<el-col :lg="24">
|
||
<el-form-item label="异常信息:" v-if="form.status === 1">{{ form.errorMsg }}</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</el-form>
|
||
<template #footer>
|
||
<el-button text @click="open = false">关 闭</el-button>
|
||
</template>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup name="operlog">
|
||
import { list as listOperLog, delOperlog, cleanOperlog, exportOperlog } from '@/api/monitor/operlog'
|
||
|
||
const { proxy } = getCurrentInstance()
|
||
// 遮罩层
|
||
const loading = ref(true)
|
||
// 选中数组
|
||
const ids = ref([])
|
||
// 非多个禁用
|
||
const multiple = ref(true)
|
||
// 显示搜索条件
|
||
const showSearch = ref(true)
|
||
// 总条数
|
||
const total = ref(0)
|
||
// 表格数据
|
||
const list = ref([])
|
||
// 是否显示弹出层
|
||
const open = ref(false)
|
||
// 类型数据字典
|
||
const statusOptions = ref([])
|
||
// 业务类型(0其它 1新增 2修改 3删除)选项列表 格式 eg:{ dictLabel: '标签', dictValue: '0'}
|
||
const businessTypeOptions = ref([])
|
||
// 日期范围
|
||
const dateRange = ref([])
|
||
|
||
const state = reactive({
|
||
form: {},
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
title: undefined,
|
||
operName: undefined,
|
||
businessType: undefined,
|
||
status: undefined
|
||
},
|
||
options: {
|
||
//业务类型(0其它 1新增 2修改 3删除)选项列表 格式 eg:{ dictLabel: '标签', dictValue: '0'}
|
||
businessTypeOptions: [],
|
||
statusOptions: []
|
||
}
|
||
})
|
||
const { form, queryParams, options } = toRefs(state)
|
||
var dictParams = [
|
||
{ dictType: 'sys_oper_type', columnName: 'businessTypeOptions' },
|
||
{ dictType: 'sys_common_status', columnName: 'statusOptions' }
|
||
]
|
||
proxy.getDicts(dictParams).then((response) => {
|
||
response.data.forEach((element) => {
|
||
state.options[element.columnName] = element.list
|
||
})
|
||
})
|
||
/** 查询登录日志 */
|
||
function getList() {
|
||
loading.value = true
|
||
listOperLog(proxy.addDateRange(queryParams.value, dateRange.value)).then((response) => {
|
||
loading.value = false
|
||
if (response.code == 200) {
|
||
list.value = response.data.result
|
||
total.value = response.data.totalNum
|
||
} else {
|
||
total.value = 0
|
||
list.value = []
|
||
}
|
||
})
|
||
}
|
||
// 操作日志状态字典翻译
|
||
function statusFormat(row, column) {
|
||
return proxy.selectDictLabel(statusOptions.value, row.status)
|
||
}
|
||
/** 搜索按钮操作 */
|
||
function handleQuery() {
|
||
queryParams.value.pageNum = 1
|
||
getList()
|
||
}
|
||
/** 重置按钮操作 */
|
||
function resetQuery() {
|
||
dateRange.value = []
|
||
proxy.resetForm('queryForm')
|
||
handleQuery()
|
||
}
|
||
// 多选框选中数据
|
||
function handleSelectionChange(selection) {
|
||
ids.value = selection.map((item) => item.operId)
|
||
multiple.value = !selection.length
|
||
}
|
||
const formRef = ref()
|
||
/** 重置操作表单 */
|
||
function reset() {
|
||
form.value = {
|
||
operId: undefined,
|
||
title: undefined,
|
||
businessType: undefined,
|
||
method: undefined,
|
||
requestMethod: undefined,
|
||
operatorType: undefined,
|
||
deptName: undefined,
|
||
operUrl: undefined,
|
||
operIp: undefined,
|
||
operLocation: undefined,
|
||
operParam: undefined,
|
||
jsonResult: undefined,
|
||
status: 0,
|
||
errorMsg: undefined,
|
||
operTime: undefined,
|
||
elapsed: 0
|
||
}
|
||
proxy.resetForm('formRef')
|
||
}
|
||
/** 详细按钮操作 */
|
||
function handleView(row) {
|
||
reset()
|
||
open.value = true
|
||
form.value = row
|
||
}
|
||
/** 删除按钮操作 */
|
||
function handleDelete(row) {
|
||
const operIds = row.operId || ids.value
|
||
proxy
|
||
.$confirm('是否确认删除日志编号为"' + operIds + '"的数据项?', '警告', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
})
|
||
.then(function () {
|
||
return delOperlog(operIds)
|
||
})
|
||
.then(() => {
|
||
getList()
|
||
proxy.$modal.msgSuccess('删除成功')
|
||
})
|
||
}
|
||
/** 清空按钮操作 */
|
||
function handleClean() {
|
||
proxy
|
||
.$confirm('是否确认清空所有操作日志数据项?', '警告', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
})
|
||
.then(function () {
|
||
return cleanOperlog()
|
||
})
|
||
.then(() => {
|
||
getList()
|
||
proxy.$modal.msgSuccess('清空成功')
|
||
})
|
||
}
|
||
/** 导出按钮操作 */
|
||
function handleExport() {
|
||
proxy
|
||
.$confirm('是否确认导出所有操作日志?', '警告', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
})
|
||
.then(() => {
|
||
exportOperlog(queryParams.value).then((response) => {
|
||
const { code, data } = response
|
||
if (code == 200) {
|
||
proxy.$modal.msgSuccess('导出成功')
|
||
proxy.download(data.path)
|
||
} else {
|
||
proxy.$modal.msgError('导出失败')
|
||
}
|
||
})
|
||
})
|
||
}
|
||
handleQuery()
|
||
</script>
|