😎调整访问日志页面
This commit is contained in:
parent
3a28a6f0fc
commit
a510bf2046
@ -1,173 +1,192 @@
|
||||
<template>
|
||||
<div class="sys-vislog-container">
|
||||
<el-card shadow="hover" :body-style="{ paddingBottom: '0' }">
|
||||
<el-form :model="state.queryParams" ref="queryForm" :inline="true">
|
||||
<el-form-item label="开始时间">
|
||||
<el-date-picker v-model="state.queryParams.startTime" type="datetime" placeholder="开始时间" value-format="YYYY-MM-DD HH:mm:ss" :shortcuts="shortcuts" />
|
||||
</el-form-item>
|
||||
<el-form-item label="结束时间" prop="code">
|
||||
<el-date-picker v-model="state.queryParams.endTime" type="datetime" placeholder="结束时间" value-format="YYYY-MM-DD HH:mm:ss" :shortcuts="shortcuts" />
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group>
|
||||
<el-button type="primary" icon="ele-Search" @click="handleQuery" v-auth="'sysVislog:page'"> 查询 </el-button>
|
||||
<el-button icon="ele-Refresh" @click="resetQuery"> 重置 </el-button>
|
||||
</el-button-group>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button icon="ele-MapLocation" @click="openVisMap"> 热力图 </el-button>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button icon="ele-DeleteFilled" type="danger" @click="clearLog" v-auth="'sysVislog:clear'" disabled> 清空 </el-button>
|
||||
</el-form-item>
|
||||
<div class="sys-vislog-container" v-loading="options.loading">
|
||||
<el-card shadow="hover" :body-style="{ padding: '5px 5px 0 5px', display: 'flex', width: '100%', height: '100%', alignItems: 'start' }">
|
||||
<el-form :model="state.queryParams" ref="queryForm" :show-message="false" :inlineMessage="true" :label-width="'60px'" style="flex: 1 1 0%">
|
||||
<el-row :gutter="10">
|
||||
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
|
||||
<el-form-item label="开始时间" prop="name">
|
||||
<el-date-picker v-model="state.queryParams.startTime" type="datetime" placeholder="开始时间" :shortcuts="shortcuts" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
|
||||
<el-form-item label="结束时间" prop="code">
|
||||
<el-date-picker v-model="state.queryParams.endTime" type="datetime" placeholder="结束时间" :shortcuts="shortcuts" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
|
||||
<el-form-item label="显示名称" prop="displayTitle">
|
||||
<el-input v-model="state.queryParams.displayTitle" clearable placeholder="显示名称" @keyup.enter.native="handleQuery(true)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
|
||||
<el-form-item label="操作人" prop="realName">
|
||||
<el-input v-model="state.queryParams.realName" clearable placeholder="操作人" @keyup.enter.native="handleQuery(true)" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<el-divider style="height: calc(100% - 5px); margin: 0 10px" direction="vertical" />
|
||||
|
||||
<el-row>
|
||||
<el-col>
|
||||
<el-button-group>
|
||||
<el-button type="primary" icon="ele-Search" @click="handleQuery(true)" v-auth="'sysVislog:page'" :loading="options.loading"> 查询 </el-button>
|
||||
<el-button icon="ele-Refresh" @click="resetQuery" :loading="options.loading"> 重置 </el-button>
|
||||
</el-button-group>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-card>
|
||||
|
||||
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
|
||||
<el-table :data="state.logData" style="width: 100%" v-loading="state.loading" border>
|
||||
<el-table-column type="index" label="序号" width="55" align="center" />
|
||||
<el-table-column prop="displayTitle" label="显示名称" width="150" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="actionName" label="方法名称" width="150" header-align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="account" label="账号名称" width="100" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="realName" label="真实姓名" width="100" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="remoteIp" label="IP地址" min-width="120" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="location" label="登录地点" min-width="150" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="longitude" label="经度" min-width="100" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="latitude" label="纬度" min-width="100" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="browser" label="浏览器" min-width="150" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="os" label="操作系统" width="120" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="status" label="状态" width="70" align="center" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<el-tag type="success" v-if="scope.row.status === '200'">成功</el-tag>
|
||||
<el-tag type="danger" v-else>失败</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="elapsed" label="耗时(ms)" width="90" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="logDateTime" label="日志时间" width="160" align="center" fixed="right" show-overflow-tooltip />
|
||||
</el-table>
|
||||
<el-pagination
|
||||
v-model:currentPage="state.tableParams.page"
|
||||
v-model:page-size="state.tableParams.pageSize"
|
||||
:total="state.tableParams.total"
|
||||
:page-sizes="[10, 20, 50, 100]"
|
||||
small
|
||||
background
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="handleCurrentChange"
|
||||
layout="total, sizes, prev, pager, next, jumper"
|
||||
/>
|
||||
<vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" @sort-change="sortChange">
|
||||
<template #toolbar_buttons>
|
||||
<el-button icon="ele-DeleteFilled" type="danger" @click="handleClear" v-auth="'sysVislog:clear'"> 清空 </el-button>
|
||||
<el-button icon="ele-MapLocation" type="primary" @click="handleMap"> 热力图 </el-button>
|
||||
</template>
|
||||
<template #toolbar_tools> </template>
|
||||
<template #empty>
|
||||
<el-empty :image-size="200" />
|
||||
</template>
|
||||
<template #row_status="{ row }">
|
||||
<el-tag v-if="row.status === '200'" type="success">成功</el-tag>
|
||||
<el-tag v-else type="danger">失败</el-tag>
|
||||
</template>
|
||||
<template #pager>
|
||||
<vxe-pager
|
||||
:loading="options.loading"
|
||||
v-model:current-page="state.tableParams.page"
|
||||
v-model:page-size="state.tableParams.pageSize"
|
||||
:total="state.tableParams.total"
|
||||
@page-change="pageChange"
|
||||
/>
|
||||
</template>
|
||||
</vxe-grid>
|
||||
</el-card>
|
||||
|
||||
<VisMap ref="visMapRef" :title="state.dialogTitle" />
|
||||
<VisMap ref="mapRef" :title="state.title" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="sysVisLog">
|
||||
import { onMounted, reactive, ref } from 'vue';
|
||||
import { ElMessage, ElMessageBox } from 'element-plus';
|
||||
|
||||
import VisMap from './component/visMap.vue';
|
||||
import { onMounted, reactive, ref, defineAsyncComponent } from 'vue';
|
||||
import { ElMessage } from 'element-plus';
|
||||
import { useDateTimeShortCust } from '/@/hooks/dateTimeShortCust';
|
||||
import { auth } from '/@/utils/authFunction';
|
||||
import { VxeGridInstance, VxePagerEvents, VxePagerDefines } from 'vxe-table';
|
||||
import { useVxeTable } from '/@/hooks/vxeTableOptionsHook';
|
||||
|
||||
import { getAPI } from '/@/utils/axios-utils';
|
||||
import { SysLogVisApi } from '/@/api-services/api';
|
||||
import { SysLogVisApi } from '/@/api-services';
|
||||
import { SysLogVis } from '/@/api-services/models';
|
||||
|
||||
const visMapRef = ref<InstanceType<typeof VisMap>>();
|
||||
const VisMap = defineAsyncComponent(() => import('./component/visMap.vue'));
|
||||
|
||||
const xGrid = ref<VxeGridInstance>();
|
||||
const mapRef = ref<InstanceType<typeof VisMap>>();
|
||||
const shortcuts = useDateTimeShortCust();
|
||||
const state = reactive({
|
||||
loading: false,
|
||||
queryParams: {
|
||||
startTime: undefined,
|
||||
endTime: undefined,
|
||||
startTime: undefined as string | undefined,
|
||||
endTime: undefined as string | undefined,
|
||||
displayTitle: '',
|
||||
realName: '',
|
||||
},
|
||||
tableParams: {
|
||||
page: 1,
|
||||
pageSize: 20,
|
||||
pageSize: 50,
|
||||
field: 'id', // 默认的排序字段
|
||||
order: 'desc', // 排序方向
|
||||
descStr: 'desc', // 降序排序的关键字符
|
||||
total: 0 as any,
|
||||
},
|
||||
logData: [] as Array<SysLogVis>,
|
||||
dialogTitle: '',
|
||||
title: '',
|
||||
});
|
||||
|
||||
// 表格参数配置
|
||||
const options = useVxeTable<SysLogVis>({
|
||||
id: 'sysVisLog',
|
||||
name: '访问日志',
|
||||
columns: [
|
||||
// { type: 'checkbox', width: 40 },
|
||||
{ type: 'seq', title: '序号', width: 60 },
|
||||
{ field: 'displayTitle', title: '显示名称', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'actionName', title: '方法名称', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'account', title: '账号名称', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'realName', title: '真实姓名', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'remoteIp', title: 'IP地址', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'location', title: '登录地点', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'longitude', title: '经度', minWidth: 100, showOverflow: 'tooltip' },
|
||||
{ field: 'latitude', title: '纬度', minWidth: 100, showOverflow: 'tooltip' },
|
||||
{ field: 'browser', title: '浏览器', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'os', title: '操作系统', minWidth: 150, showOverflow: 'tooltip' },
|
||||
{ field: 'status', title: '状态', minWidth: 70, showOverflow: 'tooltip', slots: { default: 'row_status' } },
|
||||
{ field: 'elapsed', title: '耗时(ms)', minWidth: 100, showOverflow: 'tooltip' },
|
||||
{ field: 'logDateTime', title: '日志时间', minWidth: 150, showOverflow: 'tooltip' },
|
||||
],
|
||||
enableExport: auth('sysVislog:export'),
|
||||
searchCallback: () => handleQuery(),
|
||||
queryAllCallback: () => fetchData({ pageSize: 99999 }),
|
||||
});
|
||||
|
||||
// 页面初始化
|
||||
onMounted(async () => {
|
||||
handleQuery();
|
||||
await handleQuery();
|
||||
});
|
||||
|
||||
// 查询操作
|
||||
const handleQuery = async () => {
|
||||
const handleQuery = async (reset = false) => {
|
||||
options.loading = true;
|
||||
if (reset) state.tableParams.page = 1;
|
||||
var res = await fetchData(null);
|
||||
xGrid.value?.loadData(res.data.result?.items ?? []);
|
||||
state.tableParams.total = res.data.result?.total;
|
||||
options.loading = false;
|
||||
};
|
||||
|
||||
// 获取数据
|
||||
const fetchData = async (tableParams: any) => {
|
||||
if (state.queryParams.startTime == null) state.queryParams.startTime = undefined;
|
||||
if (state.queryParams.endTime == null) state.queryParams.endTime = undefined;
|
||||
|
||||
state.loading = true;
|
||||
let params = Object.assign(state.queryParams, state.tableParams);
|
||||
var res = await getAPI(SysLogVisApi).apiSysLogVisPagePost(params);
|
||||
state.logData = res.data.result?.items ?? [];
|
||||
state.tableParams.total = res.data.result?.total;
|
||||
state.loading = false;
|
||||
let params = Object.assign(state.queryParams, state.tableParams, tableParams);
|
||||
return getAPI(SysLogVisApi).apiSysLogVisPagePost(params);
|
||||
};
|
||||
|
||||
// 重置操作
|
||||
const resetQuery = () => {
|
||||
state.queryParams.startTime = undefined;
|
||||
state.queryParams.endTime = undefined;
|
||||
handleQuery();
|
||||
state.queryParams.displayTitle = '';
|
||||
state.queryParams.realName = '';
|
||||
handleQuery(true);
|
||||
};
|
||||
|
||||
// 清空日志
|
||||
const clearLog = async () => {
|
||||
ElMessageBox.confirm(`确定清空访问日志?`, '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning',
|
||||
})
|
||||
.then(async () => {
|
||||
state.loading = true;
|
||||
await getAPI(SysLogVisApi).apiSysLogVisClearPost();
|
||||
state.loading = false;
|
||||
|
||||
ElMessage.success('清空成功');
|
||||
handleQuery();
|
||||
})
|
||||
.catch(() => {});
|
||||
const handleClear = async () => {
|
||||
options.loading = true;
|
||||
await getAPI(SysLogVisApi).apiSysLogVisClearPost();
|
||||
options.loading = false;
|
||||
ElMessage.success('清空成功');
|
||||
handleQuery(true);
|
||||
};
|
||||
|
||||
// 打开访问热力图
|
||||
const openVisMap = async () => {
|
||||
state.dialogTitle = '访问者热力图';
|
||||
visMapRef.value?.openDialog();
|
||||
const handleMap = async () => {
|
||||
state.title = '访问者热力图';
|
||||
mapRef.value?.openDialog();
|
||||
};
|
||||
|
||||
// 改变页面容量
|
||||
const handleSizeChange = (val: number) => {
|
||||
state.tableParams.pageSize = val;
|
||||
// 改变页码序号或页面容量
|
||||
const pageChange: VxePagerEvents.PageChange = ({ currentPage, pageSize }: VxePagerDefines.PageChangeEventParams) => {
|
||||
state.tableParams.page = currentPage;
|
||||
state.tableParams.pageSize = pageSize;
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
// 改变页码序号
|
||||
const handleCurrentChange = (val: number) => {
|
||||
state.tableParams.page = val;
|
||||
// 列排序
|
||||
const sortChange = (options: any) => {
|
||||
state.tableParams.field = options.field;
|
||||
state.tableParams.order = options.order;
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
const shortcuts = [
|
||||
{
|
||||
text: '今天',
|
||||
value: new Date(),
|
||||
},
|
||||
{
|
||||
text: '昨天',
|
||||
value: () => {
|
||||
const date = new Date();
|
||||
date.setTime(date.getTime() - 3600 * 1000 * 24);
|
||||
return date;
|
||||
},
|
||||
},
|
||||
{
|
||||
text: '上周',
|
||||
value: () => {
|
||||
const date = new Date();
|
||||
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
|
||||
return date;
|
||||
},
|
||||
},
|
||||
];
|
||||
</script>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user