You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import React from 'react';
|
|
|
|
|
import { Card, Row, Col, Statistic, Progress, Button, Space } from 'antd';
|
|
|
|
|
|
|
|
|
|
import styles from './SafeMajorHazardList.less';
|
|
|
|
|
|
|
|
|
|
const SafeMajorHazardList = () => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className={styles.container}>
|
|
|
|
|
<div className={styles.TopButton}>
|
|
|
|
|
<Button className={styles.TopButtonItem}>责任落实</Button>
|
|
|
|
|
<Button className={styles.TopButtonItem}>在线监测预警</Button>
|
|
|
|
|
<Button className={styles.TopButtonItem}>风险管控</Button>
|
|
|
|
|
<Button className={styles.TopButtonItem}>评估报告及隐患处理</Button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className={styles.content}>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default SafeMajorHazardList;
|