|
|
|
@ -36,6 +36,7 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
ngOnInit() { |
|
|
|
|
this.getechartsdata(); |
|
|
|
|
// this.getYearlyCompleteProgress();
|
|
|
|
|
this.getEchartsItemData(); |
|
|
|
|
} |
|
|
|
|
ngAfterViewInit() { |
|
|
|
|
setTimeout(() => { |
|
|
|
@ -46,11 +47,27 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
}, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
etEchartsItemData = []; |
|
|
|
|
getEchartsItemData() { |
|
|
|
|
this.http |
|
|
|
|
.get("/api/StatisticsAnalysis/GetCountByOrg") |
|
|
|
|
.subscribe((data: any) => { |
|
|
|
|
console.log("统计数据", data); |
|
|
|
|
this.etEchartsItemData = data; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
myChart: any; |
|
|
|
|
isTooltip = false; |
|
|
|
|
|
|
|
|
|
mouseX; |
|
|
|
|
mouseY; |
|
|
|
|
|
|
|
|
|
itemData = { |
|
|
|
|
name: "", |
|
|
|
|
companyCount: 0, |
|
|
|
|
planCount: 0, |
|
|
|
|
}; |
|
|
|
|
echartsMap() { |
|
|
|
|
this.myChart = echarts.init(document.getElementById("chartMap")); |
|
|
|
|
let option: any = { |
|
|
|
@ -89,10 +106,21 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
series: [], |
|
|
|
|
}; |
|
|
|
|
this.myChart.on("click", (params) => { |
|
|
|
|
if (this.etEchartsItemData.length === 0) { |
|
|
|
|
alert("请数据加载完成后重试!"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
console.log("点击区域", params); |
|
|
|
|
this.isTooltip = true; |
|
|
|
|
this.mouseX = params.event.event.clientX + "px"; |
|
|
|
|
this.mouseY = params.event.event.clientY + "px"; |
|
|
|
|
let name = params.name.substring(0, 2); |
|
|
|
|
console.log("点击区域name", name); |
|
|
|
|
let item = this.etEchartsItemData.find( |
|
|
|
|
(v) => v.name.indexOf(name) !== -1 |
|
|
|
|
); |
|
|
|
|
item ? (this.itemData = item) : null; |
|
|
|
|
this.itemData.name = params.name; |
|
|
|
|
}); |
|
|
|
|
echarts.registerMap("tianjin", this.mapData); |
|
|
|
|
this.myChart.setOption(option); |
|
|
|
|