feat: 系统日志添加查看详情 (#974)

* feat: 系统日志添加查看详情
This commit is contained in:
xiaoming
2024-03-13 20:46:37 +08:00
committed by GitHub
parent 0b9fcaca4a
commit e6302b0f38
14 changed files with 799 additions and 582 deletions

View File

@@ -68,3 +68,8 @@ export const getOperationLogsList = (data?: object) => {
export const getSystemLogsList = (data?: object) => {
return http.request<ResultTable>("post", "/system-logs", { data });
};
/** 获取系统监控-系统日志-根据 id 查日志详情 */
export const getSystemLogsDetail = (data?: object) => {
return http.request<Result>("post", "/system-logs-detail", { data });
};