indexLeft.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // 污水
  2. import React, { PureComponent } from "react";
  3. import { LeftPage, RightPage } from "./style";
  4. import ChartBox from "../ChartBox";
  5. import BMap from "../centerPage/charts/BMap";
  6. import WaterVolumeStat from "../Overview/WaterVolumeStat";
  7. import PipelineMonitoring from "../Overview/PipelineMonitoring";
  8. import WornAnalyze from "./WornAnalyze";
  9. import DrainWaterPine from "./DrainWaterPine";
  10. class index extends PureComponent {
  11. constructor(props) {
  12. super(props);
  13. this.state = {};
  14. }
  15. render() {
  16. return (
  17. <LeftPage>
  18. <ChartBox title="当年水量统计" style={{ flex: 1 }}>
  19. <WaterVolumeStat />
  20. </ChartBox>
  21. <ChartBox
  22. title="不同分区管网漏损分析"
  23. style={{ flex: 1, marginTop: 30 }}
  24. >
  25. <WornAnalyze />
  26. </ChartBox>
  27. <ChartBox
  28. title="当月管网监测"
  29. style={{ flex: 1, marginTop: 30, marginBottom: 30 }}
  30. >
  31. <PipelineMonitoring />
  32. </ChartBox>
  33. </LeftPage>
  34. );
  35. }
  36. }
  37. export default index;