Merge pull request '新增数据分析按钮' (#331) from tongChong/forgeplus-react:feature_jk_homepage into pre_dev_military

This commit is contained in:
xxq250 2021-12-29 10:55:44 +08:00
commit 27e4624eda
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import React, { useMemo } from 'react';
import { Menu, Dropdown, } from 'antd';
import { current_main_site_url,main_web_site_url} from '../../static';
import { current_main_site_url, main_web_site_url } from '../../static';
import './index.scss';
@ -96,9 +96,9 @@ export default props => {
return (
<div className="centerbox managements_menus clearfix">
<Dropdown key={'projectMenu'} overlay={projectMenu} placement="bottomLeft">
<Dropdown key={'projectMenu'} overlay={projectMenu} placement="bottomLeft">
<div className="drop-div">
项目
项目
</div>
</Dropdown>
@ -131,6 +131,8 @@ export default props => {
<Dropdown key={'configMenu'} overlay={configMenu} placement="bottomLeft">
<div className="drop-div">网站配置</div>
</Dropdown>
<div className="drop-div" ><a target="_blank" href="http://121.36.15.240:20772/">数据分析管理</a></div>
</div>
)
}