fix(api):update store
This commit is contained in:
parent
cc4b544b2e
commit
f7e8a7bd1e
17
README.md
17
README.md
|
@ -44,3 +44,20 @@ You don’t have to ever use `eject`. The curated feature set is suitable for sm
|
|||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
添加的数据
|
||||
|
||||
1、队伍属性管理 添加队伍
|
||||
2、个人身份管理 添加身份
|
||||
3、组织架构通过部门来组织
|
||||
|
||||
|
||||
首页:
|
||||
1、组织架构 用户数量统计,党员数量统计
|
||||
2、武装力量 根据队伍统计
|
||||
3、年度训练 按照年度统计类别,次数 (任务发布时,可选择多个类别)
|
||||
|
||||
|
||||
4、物资管理
|
||||
5、档案管理
|
||||
|
||||
6、评优争先
|
|
@ -15,7 +15,7 @@ const HomeBottom = () => {
|
|||
return (
|
||||
<div className="bottom_container">
|
||||
<div className="bottom_content">
|
||||
<span onClick={openDispatch}>民兵调度</span>
|
||||
<span onClick={openDispatch}>巡防调度</span>
|
||||
<span onClick={openDispatch}>应急处突</span>
|
||||
<span onClick={openDispatch}>应急连线</span>
|
||||
<span onClick={openDispatch}>视频查看</span>
|
||||
|
|
|
@ -30,12 +30,12 @@ const HomeLeft = () => {
|
|||
</div>
|
||||
<div onClick={jumpToUser} className="org">
|
||||
<div className="org_head">
|
||||
<p>用户管理</p>
|
||||
<p>武装力量</p>
|
||||
</div>
|
||||
</div>
|
||||
<div onClick={openDispatch} className="org">
|
||||
<div className="org_head">
|
||||
<p>HomeLeft</p>
|
||||
<p>年度训练</p>
|
||||
</div>
|
||||
</div>
|
||||
<Modal
|
||||
|
|
|
@ -1,8 +1,24 @@
|
|||
import "./right.less";
|
||||
const HomeRight = () => {
|
||||
return <div className="right_container">
|
||||
<div className="right_body">HomeRight</div>
|
||||
</div>;
|
||||
return (
|
||||
<div className="right_container">
|
||||
<div className="org">
|
||||
<div className="org_head">
|
||||
<p>物资管理</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="org">
|
||||
<div className="org_head">
|
||||
<p>档案管理</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="org">
|
||||
<div className="org_head">
|
||||
<p>评优争先</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomeRight;
|
||||
|
|
|
@ -1,8 +1,23 @@
|
|||
.right_container{
|
||||
.right_container {
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
height: auto;
|
||||
.org {
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
min-height: 200px;
|
||||
text-align: center;
|
||||
.org_head {
|
||||
width: 100%;
|
||||
background-image: url("../../../static/titie_secend@1x.png");
|
||||
background-size: 100% 50px;
|
||||
background-repeat: no-repeat;
|
||||
line-height: 60px;
|
||||
height: 50px;
|
||||
text-align: left;
|
||||
padding-left: 20px;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue