feat(audit): add audit log page
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
import { AuditLogPanel } from "@/components/audit/AuditLogPanel";
|
||||||
|
|
||||||
|
export default function AuditLogsPage() {
|
||||||
|
return <AuditLogPanel />;
|
||||||
|
}
|
||||||
@@ -26,6 +26,7 @@ import { AiOutlineSecurityScan } from "react-icons/ai";
|
|||||||
import { MdWater, MdOutlineWaterDrop, MdCleaningServices } from "react-icons/md";
|
import { MdWater, MdOutlineWaterDrop, MdCleaningServices } from "react-icons/md";
|
||||||
import {
|
import {
|
||||||
ManageAccounts as ManageAccountsIcon,
|
ManageAccounts as ManageAccountsIcon,
|
||||||
|
FactCheck as FactCheckIcon,
|
||||||
MyLocation as MyLocationIcon,
|
MyLocation as MyLocationIcon,
|
||||||
Search as SearchIcon,
|
Search as SearchIcon,
|
||||||
} from "@mui/icons-material";
|
} from "@mui/icons-material";
|
||||||
@@ -270,6 +271,14 @@ const App = (props: React.PropsWithChildren<AppProps>) => {
|
|||||||
label: "系统管理",
|
label: "系统管理",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "审计日志",
|
||||||
|
list: "/audit-logs",
|
||||||
|
meta: {
|
||||||
|
icon: <FactCheckIcon className="w-6 h-6" />,
|
||||||
|
label: "审计日志",
|
||||||
|
},
|
||||||
|
},
|
||||||
]
|
]
|
||||||
: []),
|
: []),
|
||||||
]}
|
]}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user