diff --git a/src/routes/Dashboard/Monitor.js b/src/routes/Dashboard/Monitor.js index 8ce7dbab937ade9807d65ed3f90b7132ac30c296..5c888a65971f3940530d1a0684f4ef1a4f29fda3 100644 --- a/src/routes/Dashboard/Monitor.js +++ b/src/routes/Dashboard/Monitor.js @@ -1,6 +1,6 @@ import React, { PureComponent } from 'react'; import { connect } from 'dva'; -import { Row, Col, Card } from 'antd'; +import { Row, Col, Card, Tooltip } from 'antd'; import numeral from 'numeral'; import { Pie, WaterWave, Gauge, TagCloud } from '../../components/Charts'; @@ -10,14 +10,6 @@ import ActiveChart from '../../components/ActiveChart'; import styles from './Monitor.less'; -const MapData = []; -for (let i = 0; i < 50; i += 1) { - MapData.push({ - x: Math.floor(Math.random() * 600), - y: Math.floor(Math.random() * 400), - value: Math.floor(Math.random() * 1000) + 500, - }); -} const targetTime = new Date().getTime() + 3900000; @connect(state => ({ @@ -68,7 +60,9 @@ export default class Monitor extends PureComponent {
- map + + map +
diff --git a/src/routes/Dashboard/Monitor.less b/src/routes/Dashboard/Monitor.less index c0c3d2d908709ed8c49db1262e0c88da8ecdd124..4acca07dee51f80464f6e2652843aaf2312381c0 100644 --- a/src/routes/Dashboard/Monitor.less +++ b/src/routes/Dashboard/Monitor.less @@ -6,6 +6,7 @@ height: 457px; img { width: 100%; + max-height: 457px; } }