UNIVPLMDataIntegration/Web/src/views/system/log/exlog/index.vue

253 lines
10 KiB
Vue
Raw Normal View History

2024-06-15 13:02:35 +08:00
<template>
2024-07-16 16:07:57 +08:00
<div class="sys-exlog-container">
2024-07-01 10:37:39 +08:00
<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="auto" style="flex: 1 1 0%">
2024-07-01 10:37:39 +08:00
<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">
2024-07-11 01:13:59 +08:00
<el-input v-model="state.queryParams.displayTitle" clearable placeholder="显示名称" @keyup.enter.native="handleQuery" />
2024-07-01 10:37:39 +08:00
</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">
2024-07-11 01:13:59 +08:00
<el-input v-model="state.queryParams.realName" clearable placeholder="操作人" @keyup.enter.native="handleQuery" />
2024-07-01 10:37:39 +08:00
</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>
2024-06-15 13:02:35 +08:00
<el-button-group>
2024-07-11 01:13:59 +08:00
<el-button type="primary" icon="ele-Search" @click="handleQuery" v-auth="'sysExlog:page'" :loading="options.loading"> 查询 </el-button>
2024-07-01 10:37:39 +08:00
<el-button icon="ele-Refresh" @click="resetQuery" :loading="options.loading"> 重置 </el-button>
2024-06-15 13:02:35 +08:00
</el-button-group>
2024-07-01 10:37:39 +08:00
</el-col>
</el-row>
2024-06-15 13:02:35 +08:00
</el-card>
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
2024-07-11 01:13:59 +08:00
<vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" v-on="gridEvents" @cell-dblclick="handleView">
2024-07-01 10:37:39 +08:00
<template #toolbar_buttons>
<el-button icon="ele-DeleteFilled" type="danger" @click="handleClear" v-auth="'sysExlog:clear'"> 清空 </el-button>
</template>
<template #toolbar_tools> </template>
<template #empty>
<el-empty :image-size="200" />
</template>
<template #row_logLevel="{ row }">
<el-tag v-if="row.logLevel === 1">调试</el-tag>
<el-tag v-else-if="row.logLevel === 2">消息</el-tag>
<el-tag v-else-if="row.logLevel === 3">警告</el-tag>
<el-tag v-else-if="row.logLevel === 4">错误</el-tag>
<el-tag v-else>其他</el-tag>
</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 #row_buttons="{ row }">
<el-button icon="ele-InfoFilled" text type="primary" @click="handleView({ row })">详情</el-button>
</template>
</vxe-grid>
2024-06-15 13:02:35 +08:00
</el-card>
2024-07-01 10:37:39 +08:00
<el-dialog v-model="state.visible" draggable overflow destroy-on-close>
2024-06-15 13:02:35 +08:00
<template #header>
<div style="color: #fff">
<el-icon size="16" style="margin-right: 3px; display: inline; vertical-align: middle"> <ele-Document /> </el-icon>
<span> 日志详情 </span>
</div>
</template>
2024-07-01 10:37:39 +08:00
<el-tabs v-model="state.activeTab" type="border-card">
<el-tab-pane label="日志消息" name="message">
<el-scrollbar height="calc(100vh - 250px)">
<pre>{{ state.detail.message }}</pre>
</el-scrollbar>
</el-tab-pane>
<el-tab-pane label="请求参数" name="request" :lazy="true">
<el-scrollbar height="calc(100vh - 250px)">
<vue-json-pretty :data="state.detail.requestParam" showLength showIcon showLineNumber showSelectController />
</el-scrollbar>
</el-tab-pane>
<el-tab-pane label="返回内容" name="return" :lazy="true">
<el-scrollbar height="calc(100vh - 250px)">
<vue-json-pretty :data="state.detail.returnResult" showLength showIcon showLineNumber showSelectController />
</el-scrollbar>
</el-tab-pane>
</el-tabs>
2024-06-15 13:02:35 +08:00
</el-dialog>
</div>
</template>
<script lang="ts" setup name="sysExLog">
2024-07-01 10:37:39 +08:00
import { onMounted, reactive, ref } from 'vue';
2024-06-15 13:02:35 +08:00
import { ElMessage } from 'element-plus';
2024-07-01 10:37:39 +08:00
import { useDateTimeShortCust } from '/@/hooks/dateTimeShortCust';
import { auth } from '/@/utils/authFunction';
2024-07-11 01:13:59 +08:00
import { VxeGridInstance, VxeGridListeners, VxeGridPropTypes } from 'vxe-table';
import { useVxeTable } from '/@/hooks/useVxeTableOptionsHook';
import { Local } from '/@/utils/storage';
2024-07-01 10:37:39 +08:00
import VueJsonPretty from 'vue-json-pretty';
import 'vue-json-pretty/lib/styles.css';
import { StringToObj } from '/@/utils/json-utils';
2024-06-15 13:02:35 +08:00
import { getAPI } from '/@/utils/axios-utils';
import { SysLogExApi } from '/@/api-services/api';
2024-07-11 01:13:59 +08:00
import { SysLogEx, PageLogInput } from '/@/api-services/models';
2024-06-15 13:02:35 +08:00
2024-07-01 10:37:39 +08:00
const xGrid = ref<VxeGridInstance>();
const shortcuts = useDateTimeShortCust();
2024-06-15 13:02:35 +08:00
const state = reactive({
queryParams: {
startTime: undefined,
endTime: undefined,
2024-07-01 10:37:39 +08:00
displayTitle: '',
realName: '',
2024-06-15 13:02:35 +08:00
},
2024-07-11 01:13:59 +08:00
localPageParam: {
pageSize: 50 as number,
2024-07-11 01:35:06 +08:00
defaultSort: { field: 'id', order: 'desc', descStr: 'desc' },
2024-06-15 13:02:35 +08:00
},
2024-07-01 10:37:39 +08:00
visible: false,
detail: {
requestParam: undefined,
returnResult: undefined,
message: '' as string | null | undefined,
exception: undefined,
},
activeTab: 'message',
});
2024-07-11 01:13:59 +08:00
// 本地存储参数
const localPageParamKey = 'localPageParam:sysExLog';
2024-07-01 10:37:39 +08:00
// 表格参数配置
2024-07-11 01:13:59 +08:00
const options = useVxeTable<SysLogEx>(
{
id: 'sysExLog',
name: '异常日志',
columns: [
// { type: 'checkbox', width: 40 },
{ type: 'seq', title: '序号', width: 60, fixed: 'left' },
{ field: 'controllerName', title: '模块名称', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'displayTitle', title: '显示名称', minWidth: 150, showOverflow: 'tooltip' },
{ field: 'actionName', title: '方法名称', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'httpMethod', title: '请求方式', minWidth: 90, showOverflow: 'tooltip' },
{ field: 'requestUrl', title: '请求地址', minWidth: 300, showOverflow: 'tooltip' },
{ field: 'logLevel', title: '级别', minWidth: 70, showOverflow: 'tooltip', slots: { default: 'row_logLevel' } },
{ field: 'eventId', title: '事件Id', minWidth: 80, showOverflow: 'tooltip' },
{ field: 'threadId', title: '线程Id', minWidth: 90, showOverflow: 'tooltip' },
{ field: 'traceId', title: '请求跟踪Id', minWidth: 150, showOverflow: 'tooltip' },
{ field: 'account', title: '账号名称', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'realName', title: '真实姓名', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'remoteIp', title: 'IP地址', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'location', title: '登录地点', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'longitude', title: '经度', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'latitude', title: '纬度', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'browser', title: '浏览器', minWidth: 100, showOverflow: 'tooltip' },
{ field: 'os', title: '操作系统', minWidth: 100, 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: 160, showOverflow: 'tooltip' },
{ title: '操作', fixed: 'right', width: 100, showOverflow: true, slots: { default: 'row_buttons' } },
],
},
// vxeGrid配置参数(此处可覆写任何参数)参考vxe-table官方文档
{
// 代理配置
proxyConfig: { autoLoad: true, ajax: { query: ({ page, sort }) => handleQueryApi(page, sort) } },
// 排序配置
sortConfig: { defaultSort: Local.get(localPageParamKey)?.defaultSort || state.localPageParam.defaultSort },
// 分页配置
pagerConfig: { pageSize: Local.get(localPageParamKey)?.pageSize || state.localPageParam.pageSize },
// 工具栏配置
toolbarConfig: { export: false },
}
);
2024-06-15 13:02:35 +08:00
2024-07-01 10:37:39 +08:00
// 页面初始化
2024-06-15 13:02:35 +08:00
onMounted(async () => {
2024-07-11 01:13:59 +08:00
state.localPageParam = Local.get(localPageParamKey) || state.localPageParam;
2024-07-01 10:37:39 +08:00
await handleQuery();
2024-06-15 13:02:35 +08:00
});
2024-07-11 01:13:59 +08:00
// 查询api
const handleQueryApi = async (page: VxeGridPropTypes.ProxyAjaxQueryPageParams, sort: VxeGridPropTypes.ProxyAjaxQuerySortCheckedParams) => {
const params = Object.assign(state.queryParams, { page: page.currentPage, pageSize: page.pageSize, field: sort.field, order: sort.order, descStr: 'desc' }) as PageLogInput;
return getAPI(SysLogExApi).apiSysLogExPagePost(params);
2024-07-01 10:37:39 +08:00
};
2024-07-11 01:13:59 +08:00
// 查询操作
const handleQuery = async () => {
2024-07-16 16:07:57 +08:00
options.loading = true;
2024-07-11 01:13:59 +08:00
await xGrid.value?.commitProxy('query');
2024-07-16 16:07:57 +08:00
options.loading = false;
2024-06-15 13:02:35 +08:00
};
// 重置操作
2024-07-11 01:13:59 +08:00
const resetQuery = async () => {
2024-06-15 13:02:35 +08:00
state.queryParams.startTime = undefined;
state.queryParams.endTime = undefined;
2024-07-01 10:37:39 +08:00
state.queryParams.displayTitle = '';
state.queryParams.realName = '';
2024-07-11 01:13:59 +08:00
await xGrid.value?.commitProxy('reload');
};
// 表格事件
const gridEvents: VxeGridListeners<SysLogEx> = {
// 只对 pager-config 配置时有效,分页发生改变时会触发该事件
async pageChange({ pageSize }) {
state.localPageParam.pageSize = pageSize;
Local.set(localPageParamKey, state.localPageParam);
},
// 当排序条件发生变化时会触发该事件
async sortChange({ field, order }) {
state.localPageParam.defaultSort = { field: field, order: order!, descStr: 'desc' };
Local.set(localPageParamKey, state.localPageParam);
},
2024-06-15 13:02:35 +08:00
};
// 清空日志
2024-07-01 10:37:39 +08:00
const handleClear = async () => {
options.loading = true;
2024-06-15 13:02:35 +08:00
await getAPI(SysLogExApi).apiSysLogExClearPost();
2024-07-01 10:37:39 +08:00
options.loading = false;
2024-06-15 13:02:35 +08:00
ElMessage.success('清空成功');
2024-07-11 01:13:59 +08:00
await handleQuery();
2024-06-15 13:02:35 +08:00
};
// 查看详情
2024-07-01 10:37:39 +08:00
const handleView = async ({ row }: any) => {
const { data } = await getAPI(SysLogExApi).apiSysLogExDetailIdGet(row.id);
state.activeTab = 'message';
state.detail.message = data?.result?.message;
// 如果请求参数是JSON字符串则尝试转为JSON对象
state.detail.requestParam = StringToObj(data?.result?.requestParam);
state.detail.returnResult = StringToObj(data?.result?.returnResult);
state.visible = true;
2024-06-15 13:02:35 +08:00
};
</script>
<style lang="scss" scoped>
pre {
line-height: 20px;
2024-07-01 10:37:39 +08:00
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
2024-06-15 13:02:35 +08:00
}
</style>