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 @@ + + + + + +