Add button to jump to personal center

This commit is contained in:
2023-11-29 18:08:28 +08:00
parent d5fb2cd48d
commit 2dedeb538a

View File

@@ -12,7 +12,18 @@ const SystemFramework: React.FC = () => {
<> <>
<FitFullScreen className={'flex-horizontal'}> <FitFullScreen className={'flex-horizontal'}>
<div className={'left-panel'}> <div className={'left-panel'}>
<Sidebar title={'系统设置'}> <Sidebar
title={'系统设置'}
bottomFixed={
<SidebarItemList>
<SidebarItem
path={'/user'}
icon={IconFatwebUser}
text={'个人中心'}
/>
</SidebarItemList>
}
>
<SidebarItemList> <SidebarItemList>
{system.map((value) => { {system.map((value) => {
return value.menu ? ( return value.menu ? (