feat: 添加系统监控-操作日志

This commit is contained in:
xiaoxian521
2024-03-06 12:05:05 +08:00
parent 7a59999dc7
commit 6288e81130
7 changed files with 405 additions and 33 deletions

View File

@@ -58,3 +58,8 @@ export const getOnlineLogsList = (data?: object) => {
export const getLoginLogsList = (data?: object) => {
return http.request<ResultTable>("post", "/login-logs", { data });
};
/** 获取系统监控-操作日志列表 */
export const getOperationLogsList = (data?: object) => {
return http.request<ResultTable>("post", "/operation-logs", { data });
};