|
|
@ -3,10 +3,6 @@ import { history, Outlet, useLocation, matchRoutes } from '@umijs/max'
|
|
|
|
import { Menu, Tabs } from 'antd'
|
|
|
|
import { Menu, Tabs } from 'antd'
|
|
|
|
import './SystemContentList.less'
|
|
|
|
import './SystemContentList.less'
|
|
|
|
import { formatRoute, getDefaultRoute } from '@/utils/routeUtils'
|
|
|
|
import { formatRoute, getDefaultRoute } from '@/utils/routeUtils'
|
|
|
|
import styles from './TopNavBar.less'
|
|
|
|
|
|
|
|
import { Row, Col, Avatar, Dropdown, Button } from 'antd'
|
|
|
|
|
|
|
|
import { userInfo } from '@/utils/globalCommon'
|
|
|
|
|
|
|
|
import { HomeOutlined, SettingOutlined, LogoutOutlined } from '@ant-design/icons'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const SystemContentList = (props) => {
|
|
|
|
const SystemContentList = (props) => {
|
|
|
|
const dynamicRoute = window.dynamicRoute
|
|
|
|
const dynamicRoute = window.dynamicRoute
|
|
|
@ -54,27 +50,6 @@ const SystemContentList = (props) => {
|
|
|
|
history.replace(curKey)
|
|
|
|
history.replace(curKey)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handleMenuClick = (e) => {
|
|
|
|
|
|
|
|
switch (e.key) {
|
|
|
|
|
|
|
|
case 'logout':
|
|
|
|
|
|
|
|
loginOut()
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const dropDownMenuItems = [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
label: <><LogoutOutlined style={{ marginRight: '8px' }} />退出登录</>,
|
|
|
|
|
|
|
|
key: 'logout'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const dropDownMenu = () => (
|
|
|
|
|
|
|
|
<Menu items={dropDownMenuItems} onClick={handleMenuClick} selectedKeys={[]} className={styles.tabBarMenu} />
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className='pageContainer systemContent'>
|
|
|
|
<div className='pageContainer systemContent'>
|
|
|
|
<div className='leftMenu'>
|
|
|
|
<div className='leftMenu'>
|
|
|
@ -88,36 +63,10 @@ const SystemContentList = (props) => {
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className='rightContent'>
|
|
|
|
|
|
|
|
{/* <div style={{ width: '100%', backgroundColor: '#fff', marginBottom: '10px' }}> */}
|
|
|
|
|
|
|
|
<div className='tabBarHeader'>
|
|
|
|
|
|
|
|
<Row className='tabBarRow'>
|
|
|
|
|
|
|
|
{/* <Col xs={16} sm={16} md={16} lg={16} xl={16} className='tabBarLeft'>
|
|
|
|
|
|
|
|
<img src={Logo} alt='logo' className='leftLogo' />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Menu mode='horizontal' className='leftMenu' selectedKeys={[activeKey]} items={menuItems} onClick={value => setRouteActive(value)} />
|
|
|
|
|
|
|
|
</Col> */}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Col xs={8} sm={8} md={8} lg={8} xl={8} className='tabBarRight'>
|
|
|
|
|
|
|
|
<Avatar className='tabBarRightAvaTor' src='https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fb-ssl.duitang.com%2Fuploads%2Fitem%2F201707%2F31%2F20170731021444_2YUfe.jpeg&refer=http%3A%2F%2Fb-ssl.duitang.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1669779871&t=ec025ed48a1668dee9cfa0e803b6f787' />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span className='tabBarRightName'>{userInfo?.user_name_cn ? userInfo.user_name_cn : (userInfo?.user_name || '')}</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Dropdown dropdownRender={dropDownMenu}>
|
|
|
|
|
|
|
|
<Button type='text' className='tabBarRightBtn'><SettingOutlined /></Button>
|
|
|
|
|
|
|
|
</Dropdown>
|
|
|
|
|
|
|
|
</Col>
|
|
|
|
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* </div> */}
|
|
|
|
|
|
|
|
<div style={{ padding: '12px', height: '100%' }}>
|
|
|
|
|
|
|
|
<div className='rightContentMain'>
|
|
|
|
<div className='rightContentMain'>
|
|
|
|
<Outlet />
|
|
|
|
<Outlet />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|