From 15f97432cc0f5e420b7b8b8a9cf920742a394c7b Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Thu, 27 Nov 2025 14:03:11 +0800 Subject: [PATCH] =?UTF-8?q?2025-11-27=20=E6=96=B0=E5=A2=9E=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E6=97=A5=E5=BF=97=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/sys/system-log.js | 16 + src/views/modules/sys/interface/systemLog.vue | 802 ++++++++++++++++++ 2 files changed, 818 insertions(+) create mode 100644 src/api/sys/system-log.js create mode 100644 src/views/modules/sys/interface/systemLog.vue diff --git a/src/api/sys/system-log.js b/src/api/sys/system-log.js new file mode 100644 index 0000000..0e0bb28 --- /dev/null +++ b/src/api/sys/system-log.js @@ -0,0 +1,16 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +// ===================================== 系统日志管理 ===================================== +// 查询系统日志列表 +export const searchSystemLogs = data => createAPI(`/sys/systemLog/list`,'post',data) + +// 查询系统日志参数(主表+明细) +export const getSystemLogParams = data => createAPI(`/sys/systemLog/getParams`,'post',data) + +// 删除系统日志 +export const deleteSystemLogs = data => createAPI(`/sys/systemLog/delete`,'post',data) + +// 手动重试系统接口 +export const retrySystemInterface = data => createAPI(`/sys/systemLog/retryInterface`,'post',data) + + diff --git a/src/views/modules/sys/interface/systemLog.vue b/src/views/modules/sys/interface/systemLog.vue new file mode 100644 index 0000000..94320c8 --- /dev/null +++ b/src/views/modules/sys/interface/systemLog.vue @@ -0,0 +1,802 @@ + + + + + +