|
|
@ -62,9 +62,7 @@ function DesktopApp() {
|
|
|
|
<NavLink to='/'>
|
|
|
|
<NavLink to='/'>
|
|
|
|
<img src={AppLogo} className='logo' alt='App logo' />
|
|
|
|
<img src={AppLogo} className='logo' alt='App logo' />
|
|
|
|
</NavLink>
|
|
|
|
</NavLink>
|
|
|
|
<Title level={3}>
|
|
|
|
<Title level={3}>销售平台</Title>
|
|
|
|
销售平台
|
|
|
|
|
|
|
|
</Title>
|
|
|
|
|
|
|
|
</Col>
|
|
|
|
</Col>
|
|
|
|
<Col span={10}>
|
|
|
|
<Col span={10}>
|
|
|
|
<Menu
|
|
|
|
<Menu
|
|
|
@ -72,13 +70,20 @@ function DesktopApp() {
|
|
|
|
selectedKeys={[defaultPath]}
|
|
|
|
selectedKeys={[defaultPath]}
|
|
|
|
items={[
|
|
|
|
items={[
|
|
|
|
{ key: '/order/follow', label: <Link to='/order/follow'>订单跟踪</Link> },
|
|
|
|
{ key: '/order/follow', label: <Link to='/order/follow'>订单跟踪</Link> },
|
|
|
|
{ key: '/order/chat', label: <Link to='/order/chat'>在线聊天
|
|
|
|
{
|
|
|
|
|
|
|
|
key: '/order/chat',
|
|
|
|
|
|
|
|
label: (
|
|
|
|
|
|
|
|
<Link to='/order/chat'>
|
|
|
|
|
|
|
|
在线聊天
|
|
|
|
<Badge
|
|
|
|
<Badge
|
|
|
|
count={totalNotify}
|
|
|
|
count={totalNotify}
|
|
|
|
style={{
|
|
|
|
style={{
|
|
|
|
backgroundColor: '#52c41a',
|
|
|
|
backgroundColor: '#52c41a',
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/></Link> },
|
|
|
|
/>
|
|
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
},
|
|
|
|
{ key: '/chat/history', label: <Link to='/chat/history'>聊天记录</Link> },
|
|
|
|
{ key: '/chat/history', label: <Link to='/chat/history'>聊天记录</Link> },
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
@ -92,23 +97,27 @@ function DesktopApp() {
|
|
|
|
label: <Link to='/account/profile'>个人资料</Link>,
|
|
|
|
label: <Link to='/account/profile'>个人资料</Link>,
|
|
|
|
key: '1',
|
|
|
|
key: '1',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{ type: 'divider' },
|
|
|
|
{
|
|
|
|
{
|
|
|
|
type: 'divider',
|
|
|
|
label: <ReloadPrompt force />,
|
|
|
|
|
|
|
|
key: 'reload',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{ type: 'divider' },
|
|
|
|
{
|
|
|
|
{
|
|
|
|
label: <Link to='/p/dingding/logout'>退出</Link>,
|
|
|
|
label: <Link to='/p/dingding/logout'>退出</Link>,
|
|
|
|
key: '3',
|
|
|
|
key: '3',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
],
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
trigger={['click']}
|
|
|
|
trigger={['click']}>
|
|
|
|
>
|
|
|
|
|
|
|
|
<a onClick={(e) => e.preventDefault()} style={{ color: colorPrimary }}>
|
|
|
|
<a onClick={(e) => e.preventDefault()} style={{ color: colorPrimary }}>
|
|
|
|
<Space><Avatar
|
|
|
|
<Space>
|
|
|
|
src={loginUser.avatarUrl}>{loginUser?.username?.substring(1)}</Avatar>{loginUser.username}<DownOutlined /></Space>
|
|
|
|
<Avatar src={loginUser.avatarUrl}>{loginUser?.username?.substring(1)}</Avatar>
|
|
|
|
|
|
|
|
{loginUser.username}
|
|
|
|
|
|
|
|
<DownOutlined />
|
|
|
|
|
|
|
|
</Space>
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</Dropdown>
|
|
|
|
</Dropdown>
|
|
|
|
|
|
|
|
|
|
|
|
</Col>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</Row>
|
|
|
|
</Header>
|
|
|
|
</Header>
|
|
|
@ -125,7 +134,7 @@ function DesktopApp() {
|
|
|
|
</Layout>
|
|
|
|
</Layout>
|
|
|
|
<Footer>桂林海纳国际旅行社有限公司</Footer>
|
|
|
|
<Footer>桂林海纳国际旅行社有限公司</Footer>
|
|
|
|
</Layout>
|
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default DesktopApp
|
|
|
|
export default DesktopApp
|
|
|
|