Browse Source

[完善]echarts切换问题

tianjin
邵佳豪 2 years ago
parent
commit
acad95128e
  1. 3
      src/app/statistic-analysis/home/home.component.html
  2. 13
      src/app/statistic-analysis/home/home.component.ts
  3. 2
      src/index.html

3
src/app/statistic-analysis/home/home.component.html

@ -50,8 +50,9 @@
</div> </div>
</div> </div>
<!-- 中间 --> <!-- 中间 -->
<div class="main-center" id="chartMap" style="z-index: 99;"> <div class="main-center" style="z-index: 99;">
<!-- 数量统计 --> <!-- 数量统计 -->
<div id="chartMap"></div>
<div class="number-area" id="number-area" style="z-index: 100;height: 125px;"> <div class="number-area" id="number-area" style="z-index: 100;height: 125px;">
<div class="number-box"> <div class="number-box">
<div class="number-tit" style="color: white;">预案编制总量</div> <div class="number-tit" style="color: white;">预案编制总量</div>

13
src/app/statistic-analysis/home/home.component.ts

@ -21,12 +21,7 @@ export class HomeComponent implements OnInit {
public element: ElementRef, public element: ElementRef,
private router: Router, private router: Router,
public emitService: EchartsDataService public emitService: EchartsDataService
) { ) {}
this.http.get("assets/echarts/tianjin.json").subscribe((res) => {
this.mapData = res;
console.log("--- result :: ", res);
});
}
map: IMap; //地图 map: IMap; //地图
yuandata; yuandata;
@ -34,7 +29,11 @@ export class HomeComponent implements OnInit {
this.getechartsdata(); this.getechartsdata();
this.getYearlyCompleteProgress(); this.getYearlyCompleteProgress();
setTimeout(() => { setTimeout(() => {
this.echartsMap(); this.http.get("assets/echarts/tianjin.json").subscribe((res) => {
this.mapData = res;
this.echartsMap();
console.log("--- result :: ", res);
});
}, 0); }, 0);
} }

2
src/index.html

@ -16,5 +16,5 @@
<div id="viewerjs" style="display:none"></div> <div id="viewerjs" style="display:none"></div>
</body> </body>
<script src="/assets/html2canvas.js"></script> <!-- <script src="/assets/html2canvas.js"></script> -->
</html> </html>
Loading…
Cancel
Save