温华: 添加404路由到常驻路由表

This commit is contained in:
wenhua
2023-10-16 14:28:58 +08:00
parent 72392e9571
commit 4bf63e1306
2 changed files with 13 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ export default function SideBar() {
const goPage = (val: any) => {
console.log(val);
navigate(val.key)
navigate(val.key, { replace: true })
}
useEffect(()=>{
getMenu()
@@ -36,6 +36,7 @@ export default function SideBar() {
theme="dark"
mode="inline"
defaultSelectedKeys={[location.pathname]}
selectedKeys={[location.pathname]}
items={menuItem}
onClick={goPage}
/>