// 污水 import React, { PureComponent } from "react"; import { CenterFloodTop, CenterPage, FloodItem, LeftPage, RightPage, } from "./style"; import ChartBox from "../ChartBox"; import BMap from "../centerPage/charts/BMap"; import { ShowIconType } from "../Map/MockData"; class index extends PureComponent { constructor(props) { super(props); this.state = { data: [ { name: "内涝点总数", value: "28%" }, { name: "内涝点消除率", value: "28%" }, ], }; } render() { return ( {this.state.data.map((item, idx) => ( {item.name}
{item.value}
))}
); } } export default index;