2023-04-03 00:05:09 +08:00
|
|
|
<template>
|
|
|
|
<div class="p-2">
|
|
|
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
2023-04-19 21:26:07 +08:00
|
|
|
<div class="mb-[10px]">
|
|
|
|
<el-card shadow="hover">
|
|
|
|
<el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
|
|
|
|
<el-form-item label="系统模块" prop="title">
|
|
|
|
<el-input v-model="queryParams.title" placeholder="请输入系统模块" clearable style="width: 240px;" @keyup.enter="handleQuery" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="操作人员" prop="operName">
|
|
|
|
<el-input v-model="queryParams.operName" placeholder="请输入操作人员" clearable style="width: 240px;" @keyup.enter="handleQuery" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="类型" prop="businessType">
|
|
|
|
<el-select v-model="queryParams.businessType" placeholder="操作类型" clearable style="width: 240px">
|
|
|
|
<el-option v-for="dict in sys_oper_type" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
<el-select v-model="queryParams.status" placeholder="操作状态" clearable style="width: 240px">
|
|
|
|
<el-option v-for="dict in sys_common_status" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="操作时间" style="width: 308px">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="dateRange"
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
type="daterange"
|
|
|
|
range-separator="-"
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
:default-time="[new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 1, 1, 23, 59, 59)]"
|
|
|
|
></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-card>
|
2023-04-03 00:05:09 +08:00
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
|
2023-06-06 16:50:32 +08:00
|
|
|
<el-card shadow="hover">
|
2023-04-03 00:05:09 +08:00
|
|
|
<template #header>
|
|
|
|
<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="WarnTriangleFilled" @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="['monitor:operlog:export']">导出</el-button>
|
|
|
|
</el-col>
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
ref="operLogTableRef"
|
|
|
|
v-loading="loading"
|
|
|
|
:data="operlogList"
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
:default-sort="defaultSort"
|
|
|
|
@sort-change="handleSortChange"
|
|
|
|
>
|
|
|
|
<el-table-column type="selection" width="50" align="center" />
|
|
|
|
<el-table-column label="日志编号" align="center" prop="operId" />
|
|
|
|
<el-table-column label="系统模块" align="center" prop="title" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="操作类型" align="center" prop="businessType">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :options="sys_oper_type" :value="scope.row.businessType" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="操作人员"
|
|
|
|
align="center"
|
|
|
|
width="110"
|
|
|
|
prop="operName"
|
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
sortable="custom"
|
|
|
|
:sort-orders="['descending', 'ascending']"
|
|
|
|
/>
|
|
|
|
<el-table-column label="主机" align="center" prop="operIp" width="130" :show-overflow-tooltip="true" />
|
|
|
|
<el-table-column label="操作状态" align="center" prop="status">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :options="sys_common_status" :value="scope.row.status" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作日期" align="center" prop="operTime" width="180" sortable="custom" :sort-orders="['descending', 'ascending']">
|
|
|
|
<template #default="scope">
|
|
|
|
<span>{{ parseTime(scope.row.operTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="消耗时间"
|
|
|
|
align="center"
|
|
|
|
prop="costTime"
|
|
|
|
width="110"
|
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
sortable="custom"
|
|
|
|
:sort-orders="['descending', 'ascending']"
|
|
|
|
>
|
|
|
|
<template #default="scope">
|
|
|
|
<span>{{ scope.row.costTime }}毫秒</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" fixed="right" align="center" class-name="small-padding fixed-width">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-tooltip content="详细" placement="top">
|
|
|
|
<el-button link type="primary" icon="View" @click="handleView(scope.row)" v-hasPermi="['monitor:operlog:query']"> </el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
</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-card>
|
|
|
|
<!-- 操作日志详细 -->
|
|
|
|
<el-dialog title="操作日志详细" v-model="dialog.visible" width="700px" append-to-body>
|
|
|
|
<el-form :model="form" label-width="100px">
|
|
|
|
<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 }} / {{ form.operLocation }}</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">
|
2023-06-06 22:23:43 +08:00
|
|
|
<el-form-item label="请求参数:">{{ form.operParam }}</el-form-item>
|
2023-04-03 00:05:09 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="返回参数:">{{ form.jsonResult }}</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-form-item label="操作状态:">
|
|
|
|
<div v-if="form.status === 0">正常</div>
|
|
|
|
<div v-else-if="form.status === 1">失败</div>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-form-item label="消耗时间:">{{ form.costTime }}毫秒</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="10">
|
|
|
|
<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>
|
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button @click="dialog.visible = false">关 闭</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
<script setup name="Operlog" lang="ts">
|
|
|
|
import { list, delOperlog, cleanOperlog } from '@/api/monitor/operlog';
|
|
|
|
import { OperLogForm, OperLogQuery, OperLogVO } from '@/api/monitor/operlog/types';
|
2023-03-15 15:59:21 +08:00
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
2023-06-06 22:23:43 +08:00
|
|
|
const { sys_oper_type, sys_common_status } = toRefs<any>(proxy?.useDict("sys_oper_type", "sys_common_status"));
|
2023-03-15 15:59:21 +08:00
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
const operlogList = ref<OperLogVO[]>([]);
|
2023-03-15 15:59:21 +08:00
|
|
|
const loading = ref(true);
|
|
|
|
const showSearch = ref(true);
|
2023-04-02 01:01:56 +08:00
|
|
|
const ids = ref<Array<number | string>>([]);
|
2023-03-15 15:59:21 +08:00
|
|
|
const multiple = ref(true);
|
|
|
|
const total = ref(0);
|
2023-04-02 01:01:56 +08:00
|
|
|
const dateRange = ref<[DateModelType, DateModelType]>(['', '']);
|
|
|
|
const defaultSort = ref<any>({ prop: "operTime", order: "descending" });
|
|
|
|
|
2023-06-06 22:23:43 +08:00
|
|
|
const operLogTableRef = ref<ElTableInstance>();
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
|
|
const dialog = reactive<DialogOption>({
|
2023-06-06 22:23:43 +08:00
|
|
|
visible: false,
|
|
|
|
title: ''
|
2023-04-02 01:01:56 +08:00
|
|
|
});
|
2023-03-15 15:59:21 +08:00
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
|
|
const data = reactive<PageData<OperLogForm, OperLogQuery>>({
|
2023-06-06 22:23:43 +08:00
|
|
|
form: {
|
|
|
|
operId: undefined,
|
|
|
|
tenantId: undefined,
|
|
|
|
title: '',
|
|
|
|
businessType: 0,
|
|
|
|
businessTypes: undefined,
|
|
|
|
method: '',
|
|
|
|
requestMethod: '',
|
|
|
|
operatorType: 0,
|
|
|
|
operName: '',
|
|
|
|
deptName: '',
|
|
|
|
operUrl: '',
|
|
|
|
operIp: '',
|
|
|
|
operLocation: '',
|
|
|
|
operParam: '',
|
|
|
|
jsonResult: '',
|
|
|
|
status: 0,
|
|
|
|
errorMsg: '',
|
|
|
|
operTime: '',
|
|
|
|
costTime: 0
|
|
|
|
},
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
title: '',
|
|
|
|
operName: '',
|
|
|
|
businessType: '',
|
|
|
|
status: '',
|
|
|
|
orderByColumn: defaultSort.value.prop,
|
|
|
|
isAsc: defaultSort.value.order
|
|
|
|
},
|
|
|
|
rules: {}
|
2023-03-15 15:59:21 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const { queryParams, form } = toRefs(data);
|
|
|
|
|
|
|
|
/** 查询登录日志 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const getList = async () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
loading.value = true;
|
|
|
|
const res = await list(proxy?.addDateRange(queryParams.value, dateRange.value));
|
|
|
|
operlogList.value = res.rows;
|
|
|
|
total.value = res.total;
|
|
|
|
loading.value = false;
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 操作日志类型字典翻译 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const typeFormat = (row: OperLogForm) => {
|
2023-06-06 22:23:43 +08:00
|
|
|
return proxy?.selectDictLabel(sys_oper_type.value, row.businessType);
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleQuery = () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
getList();
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const resetQuery = () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
dateRange.value = ['', ''];
|
|
|
|
queryFormRef.value?.resetFields();
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
operLogTableRef.value?.sort(defaultSort.value.prop, defaultSort.value.order);
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 多选框选中数据 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleSelectionChange = (selection: OperLogVO[]) => {
|
2023-06-06 22:23:43 +08:00
|
|
|
ids.value = selection.map(item => item.operId);
|
|
|
|
multiple.value = !selection.length;
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 排序触发事件 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleSortChange = (column: any) => {
|
2023-06-06 22:23:43 +08:00
|
|
|
queryParams.value.orderByColumn = column.prop;
|
|
|
|
queryParams.value.isAsc = column.order;
|
|
|
|
getList();
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 详细按钮操作 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleView = (row: OperLogVO) => {
|
2023-06-06 22:23:43 +08:00
|
|
|
dialog.visible = true;
|
|
|
|
form.value = row;
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleDelete = async (row?: OperLogVO) => {
|
2023-06-06 22:23:43 +08:00
|
|
|
const operIds = row?.operId || ids.value;
|
|
|
|
await proxy?.$modal.confirm('是否确认删除日志编号为"' + operIds + '"的数据项?');
|
|
|
|
await delOperlog(operIds);
|
|
|
|
await getList();
|
|
|
|
proxy?.$modal.msgSuccess("删除成功");
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
|
2023-03-15 15:59:21 +08:00
|
|
|
/** 清空按钮操作 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleClean = async () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
await proxy?.$modal.confirm("是否确认清空所有操作日志数据项?");
|
|
|
|
await cleanOperlog();
|
|
|
|
await getList();
|
|
|
|
proxy?.$modal.msgSuccess("清空成功");
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
|
2023-03-15 15:59:21 +08:00
|
|
|
/** 导出按钮操作 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const handleExport = () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
proxy?.download("monitor/operlog/export", {
|
|
|
|
...queryParams.value,
|
|
|
|
}, `config_${new Date().getTime()}.xlsx`);
|
2023-03-15 15:59:21 +08:00
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
onMounted(() => {
|
2023-06-06 22:23:43 +08:00
|
|
|
getList();
|
2023-04-02 01:01:56 +08:00
|
|
|
})
|
2023-03-15 15:59:21 +08:00
|
|
|
</script>
|