‘lijianhao’
2 years ago
8 changed files with 114 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
import React from 'react' |
||||
|
import LeftBottom from './left/left-bottom' |
||||
|
import LeftCenter from './left/left-center' |
||||
|
import LeftTop from './left/left-top' |
||||
|
|
||||
|
const Left = () => { |
||||
|
return ( |
||||
|
<div style={{ display: 'flex',flexDirection: 'column', width: "23%", height: "100%", marginLeft: "1%" }}> |
||||
|
<LeftTop /> |
||||
|
<LeftCenter /> |
||||
|
<LeftBottom /> |
||||
|
</div> |
||||
|
) |
||||
|
} |
||||
|
export default Left |
@ -0,0 +1,14 @@ |
|||||
|
import React from 'react' |
||||
|
import Module from '../../../public/module' |
||||
|
|
||||
|
const LeftBottom = () => { |
||||
|
const style = { height: "30%", marginTop: "5%" } |
||||
|
return ( |
||||
|
<> |
||||
|
<Module style={style} title={"已绿化里程统计"}> |
||||
|
|
||||
|
</Module> |
||||
|
</> |
||||
|
) |
||||
|
} |
||||
|
export default LeftBottom |
@ -0,0 +1,14 @@ |
|||||
|
import React from 'react' |
||||
|
import Module from '../../../public/module' |
||||
|
|
||||
|
const LeftCenter = () => { |
||||
|
const style = { height: "30%", marginTop: "5%" } |
||||
|
return ( |
||||
|
<> |
||||
|
<Module style={style} title={"可绿化里程统计"}> |
||||
|
|
||||
|
</Module> |
||||
|
</> |
||||
|
) |
||||
|
} |
||||
|
export default LeftCenter |
@ -0,0 +1,14 @@ |
|||||
|
import React from 'react' |
||||
|
import Module from '../../../public/module' |
||||
|
|
||||
|
const LeftTop = () => { |
||||
|
const style = { height: "30%", marginTop: "5%" } |
||||
|
return ( |
||||
|
<> |
||||
|
<Module style={style} title={"道路养护周期统计"}> |
||||
|
|
||||
|
</Module> |
||||
|
</> |
||||
|
) |
||||
|
} |
||||
|
export default LeftTop |
@ -0,0 +1,15 @@ |
|||||
|
import React from 'react' |
||||
|
import RightBottom from './right/right-bottom' |
||||
|
import RightCenter from './right/right-center' |
||||
|
import RightTop from './right/right-top' |
||||
|
|
||||
|
const Right = () => { |
||||
|
return ( |
||||
|
<div style={{ display: 'flex',flexDirection: 'column', width: "23%", height: "100%", marginLeft: "1%", }}> |
||||
|
<RightTop /> |
||||
|
<RightCenter /> |
||||
|
<RightBottom /> |
||||
|
</div> |
||||
|
) |
||||
|
} |
||||
|
export default Right |
@ -0,0 +1,14 @@ |
|||||
|
import React from 'react' |
||||
|
import Module from '../../../public/module' |
||||
|
|
||||
|
const RightBottom = () => { |
||||
|
const style = { height: "30%", marginTop: "5%" } |
||||
|
return ( |
||||
|
<> |
||||
|
<Module style={style} title={"养护完成情况"}> |
||||
|
|
||||
|
</Module> |
||||
|
</> |
||||
|
) |
||||
|
} |
||||
|
export default RightBottom |
@ -0,0 +1,14 @@ |
|||||
|
import React from 'react' |
||||
|
import Module from '../../../public/module' |
||||
|
|
||||
|
const RightCenter = () => { |
||||
|
const style = { height: "30%", marginTop: "5%" } |
||||
|
return ( |
||||
|
<> |
||||
|
<Module style={style} title={"各类附属设施数量统计"}> |
||||
|
|
||||
|
</Module> |
||||
|
</> |
||||
|
) |
||||
|
} |
||||
|
export default RightCenter |
@ -0,0 +1,14 @@ |
|||||
|
import React from 'react' |
||||
|
import Module from '../../../public/module' |
||||
|
|
||||
|
const RightTop= () => { |
||||
|
const style = { height: "30%", marginTop: "5%" } |
||||
|
return ( |
||||
|
<> |
||||
|
<Module style={style} title={"道路设施数量统计"}> |
||||
|
|
||||
|
</Module> |
||||
|
</> |
||||
|
) |
||||
|
} |
||||
|
export default RightTop |
Loading…
Reference in new issue