feat(audit): add audit log page

This commit is contained in:
2026-06-12 15:49:43 +08:00
parent 7cd0c61181
commit 6ff8886524
3 changed files with 1069 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { AuditLogPanel } from "@/components/audit/AuditLogPanel";
export default function AuditLogsPage() {
return <AuditLogPanel />;
}
+9
View File
@@ -26,6 +26,7 @@ import { AiOutlineSecurityScan } from "react-icons/ai";
import { MdWater, MdOutlineWaterDrop, MdCleaningServices } from "react-icons/md";
import {
ManageAccounts as ManageAccountsIcon,
FactCheck as FactCheckIcon,
MyLocation as MyLocationIcon,
Search as SearchIcon,
} from "@mui/icons-material";
@@ -270,6 +271,14 @@ const App = (props: React.PropsWithChildren<AppProps>) => {
label: "系统管理",
},
},
{
name: "审计日志",
list: "/audit-logs",
meta: {
icon: <FactCheckIcon className="w-6 h-6" />,
label: "审计日志",
},
},
]
: []),
]}
File diff suppressed because it is too large Load Diff