diff --git a/src/api/sys/interface-log.js b/src/api/sys/interface-log.js new file mode 100644 index 0000000..4a3fe82 --- /dev/null +++ b/src/api/sys/interface-log.js @@ -0,0 +1,15 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +// ===================================== 接口日志管理 ===================================== +// 查询接口日志列表 +export const searchApiLogs = data => createAPI(`/sys/interfaceLog/list`,'post',data) + +// 查询接口参数(主表+明细) +export const getApiLogParams = data => createAPI(`/sys/interfaceLog/getParams`,'post',data) + +// 删除接口日志 +export const deleteApiLogs = data => createAPI(`/sys/interfaceLog/delete`,'post',data) + +// 重试接口 +export const retryApiLogs = data => createAPI(`/sys/interfaceLog/retry`,'post',data) + diff --git a/src/views/modules/sys/interface/interfaceLog.vue b/src/views/modules/sys/interface/interfaceLog.vue new file mode 100644 index 0000000..785ad2e --- /dev/null +++ b/src/views/modules/sys/interface/interfaceLog.vue @@ -0,0 +1,698 @@ + + + + + +