|
|
@ -1,12 +1,49 @@ |
|
|
|
import React from 'react' |
|
|
|
import Module from '../../../public/module' |
|
|
|
import { Col, Row } from 'antd' |
|
|
|
|
|
|
|
const RightCenter = () => { |
|
|
|
const style = { height: "30%", marginTop: "5%" } |
|
|
|
const style = { height: "31%", marginTop: "3%" } |
|
|
|
const textStyle = { fontSize: 14, color: '#E9F7FF' } |
|
|
|
const numStyle = { color: '#fff', fontSize: 24, fontFamily: 'YouSheBiaoTiHei', textShadow: '0px 0px 8px #1C60FE', marginTop: 8 } |
|
|
|
|
|
|
|
return ( |
|
|
|
<> |
|
|
|
<Module style={style} title={"各类附属设施数量统计"}> |
|
|
|
|
|
|
|
<div style={{ paddingLeft: '8%' }}> |
|
|
|
<Row style={{ marginTop: 20, justifyContent: 'space-around' }}> |
|
|
|
<Col style={{ display: 'flex', width: '50%' }}> |
|
|
|
<img src='assets/images/quanju/jiancha.png' alt='icon' /> |
|
|
|
<div style={{ marginLeft: 10 }}> |
|
|
|
<div style={textStyle}>检查井</div> |
|
|
|
<div style={numStyle}>89个</div> |
|
|
|
</div> |
|
|
|
</Col> |
|
|
|
<Col style={{ display: 'flex', width: '50%' }}> |
|
|
|
<img src='assets/images/quanju/yushui.png' alt='icon' /> |
|
|
|
<span style={{ marginLeft: 10 }}> |
|
|
|
<div style={textStyle}>雨水口</div> |
|
|
|
<div style={numStyle}>61个</div> |
|
|
|
</span> |
|
|
|
</Col> |
|
|
|
</Row> |
|
|
|
<Row style={{ marginTop: 20, justifyContent: 'space-around' }}> |
|
|
|
<Col style={{ display: 'flex', width: '50%' }}> |
|
|
|
<img src='assets/images/quanju/lupai.png' alt='icon' /> |
|
|
|
<span style={{ marginLeft: 10 }}> |
|
|
|
<div style={textStyle}>路牌名</div> |
|
|
|
<div style={numStyle}>2230个</div> |
|
|
|
</span> |
|
|
|
</Col> |
|
|
|
<Col span={12} style={{ display: 'flex', width: '50%' }}> |
|
|
|
<img src='assets/images/quanju/zerenpai.png' alt='icon' /> |
|
|
|
<span style={{ marginLeft: 10 }}> |
|
|
|
<div style={textStyle}>养护责任牌</div> |
|
|
|
<div style={numStyle}>1217个</div> |
|
|
|
</span> |
|
|
|
</Col> |
|
|
|
</Row> |
|
|
|
</div> |
|
|
|
</Module> |
|
|
|
</> |
|
|
|
) |
|
|
|