|
|
@ -4,6 +4,7 @@ import { useRoutes } from 'react-router-dom' |
|
|
|
import routes from '@/router/index' |
|
|
|
import { useRootStore } from '@/store' |
|
|
|
import menuList from '@/mock/menu' |
|
|
|
import Logo from '@/assets/img/logo.png' |
|
|
|
|
|
|
|
const { Header, Content, Footer, Sider } = Layout |
|
|
|
|
|
|
@ -22,6 +23,7 @@ function BaseLayout() { |
|
|
|
> |
|
|
|
<Sider |
|
|
|
collapsible |
|
|
|
theme='light' |
|
|
|
collapsed={collapsed} |
|
|
|
onCollapse={value => setCollapsed(value)} |
|
|
|
> |
|
|
@ -29,14 +31,27 @@ function BaseLayout() { |
|
|
|
style={{ |
|
|
|
textAlign: 'center', |
|
|
|
padding: '20px 0', |
|
|
|
color: '#fff', |
|
|
|
color: '#1677ff', |
|
|
|
fontSize: '18px', |
|
|
|
display: 'flex', |
|
|
|
alignItems: 'center', |
|
|
|
justifyContent: 'center', |
|
|
|
}} |
|
|
|
> |
|
|
|
供应链系统 |
|
|
|
{collapsed ? ( |
|
|
|
<img src={Logo} style={{ width: '24px', height: '24px' }} /> |
|
|
|
) : ( |
|
|
|
<> |
|
|
|
<img |
|
|
|
src={Logo} |
|
|
|
style={{ width: '24px', height: '24px', marginRight: '12px' }} |
|
|
|
/> |
|
|
|
供应链系统 |
|
|
|
</> |
|
|
|
)} |
|
|
|
</div> |
|
|
|
<Menu |
|
|
|
theme='dark' |
|
|
|
theme='light' |
|
|
|
defaultSelectedKeys={['1']} |
|
|
|
mode='inline' |
|
|
|
items={menuList} |
|
|
@ -77,7 +92,7 @@ function BaseLayout() { |
|
|
|
textAlign: 'center', |
|
|
|
}} |
|
|
|
> |
|
|
|
Ant Design ©2023 Created by Ant UED |
|
|
|
供应链系统 ©2023 Created by 产品梦工厂 |
|
|
|
</Footer> |
|
|
|
</Layout> |
|
|
|
</Layout> |
|
|
|