You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.0 KiB
55 lines
2.0 KiB
|
2 years ago
|
|
||
|
|
import styles from './One.less'
|
||
|
|
import Congestion from '../../components/CommandPlatform/left/Congestion'
|
||
|
|
import Rank from '../../components/CommandPlatform/left/Rank'
|
||
|
|
import CongestionTrend from '../../components/CommandPlatform/left/CongestionTrend'
|
||
|
|
import SpeedTrend from '../../components/CommandPlatform/left/SpeedTrend'
|
||
|
|
|
||
|
|
import SituationNum from '../../components/CommandPlatform/left/SituationNum'
|
||
|
|
import SituationDispose from '../../components/CommandPlatform/left/SituationDispose'
|
||
|
|
|
||
|
|
import Controls from '../../components/CommandPlatform/right/Controls'
|
||
|
|
import Cars from '../../components/CommandPlatform/right/Cars'
|
||
|
|
import Construction from '../../components/CommandPlatform/right/Construction'
|
||
|
|
import Baseline from '../../components/CommandPlatform/right/Baseline'
|
||
|
|
import Opinion from '../../components/CommandPlatform/right/Opinion'
|
||
|
|
|
||
|
|
class One extends React.PureComponent {
|
||
|
|
constructor(props) {
|
||
|
|
super(props);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<div className={styles.container}>
|
||
|
|
<div className={styles.left}>
|
||
|
|
<div style={{ width: '910px' }}>
|
||
|
|
<Congestion />
|
||
|
|
{/* <Rank />
|
||
|
|
<CongestionTrend />
|
||
|
|
<SpeedTrend /> */}
|
||
|
|
</div>
|
||
|
|
<div style={{ width: '860px' }}>
|
||
|
|
{/* <SituationNum />
|
||
|
|
<SituationDispose /> */}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{/* <div className={styles.maps}></div>
|
||
|
|
<div className={styles.right}>
|
||
|
|
<div style={{ width: '10.16rem' }}>
|
||
|
|
<Controls />
|
||
|
|
<Cars />
|
||
|
|
<Construction />
|
||
|
|
</div>
|
||
|
|
<div style={{ width: '9.5rem' }}>
|
||
|
|
<Baseline />
|
||
|
|
<Opinion/>
|
||
|
|
</div>
|
||
|
|
</div> */}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default One;
|