Browse Source

fixed: https://github.com/ant-design/ant-design-pro/issues/40 (#44)

niko 8 years ago
parent
commit
298785bdea
2 changed files with 5 additions and 10 deletions
  1. 4 10
      src/routes/Dashboard/Monitor.js
  2. 1 0
      src/routes/Dashboard/Monitor.less

+ 4 - 10
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 {
                 </Col>
               </Row>
               <div className={styles.mapChart}>
-                <img src="https://gw.alipayobjects.com/zos/rmsportal/HBWnDEUXCnGnGrRfrpKa.png" alt="map" />
+                <Tooltip title="等待后期实现">
+                  <img src="https://gw.alipayobjects.com/zos/rmsportal/HBWnDEUXCnGnGrRfrpKa.png" alt="map" />
+                </Tooltip>
               </div>
             </Card>
           </Col>

+ 1 - 0
src/routes/Dashboard/Monitor.less

@@ -6,6 +6,7 @@
   height: 457px;
   img {
     width: 100%;
+    max-height: 457px;
   }
 }