|
|
|
@ -19,6 +19,7 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
yuandata |
|
|
|
|
ngOnInit() { |
|
|
|
|
this.getechartsdata() |
|
|
|
|
this.getYearlyCompleteProgress() |
|
|
|
|
window.setTimeout(() => { |
|
|
|
|
/* this.unitType() |
|
|
|
|
this.unitData() |
|
|
|
@ -27,6 +28,25 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
}, 0) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获得年度完成情况
|
|
|
|
|
completeProgress: any = { |
|
|
|
|
monthlyCompleteProgress: '', |
|
|
|
|
yearlyCompleteProgress: '' |
|
|
|
|
} |
|
|
|
|
getYearlyCompleteProgress() { |
|
|
|
|
this.http.get('/api/StatisticsAnalysis/Companies/YearlyCompleteProgress').subscribe((data) => { |
|
|
|
|
// console.log('获得年度完成情况', data)
|
|
|
|
|
this.completeProgress = data |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
integrity(width) { |
|
|
|
|
let style: any = {} |
|
|
|
|
style.width = width + '%'; |
|
|
|
|
return style |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//更新echarts视图
|
|
|
|
|
/* updateEcharts(){ |
|
|
|
|
this.planState.resize() |
|
|
|
@ -59,7 +79,7 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
this.keyUnit() |
|
|
|
|
} |
|
|
|
|
//获取年度完成情况数据
|
|
|
|
|
getYearData(){ |
|
|
|
|
getYearData() { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -354,7 +374,7 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
this.addydata = [] |
|
|
|
|
this.addtable = JSON.parse(JSON.stringify(this.emitService.allDate)) |
|
|
|
|
this.addtable[0].organizationStatistics.organizations.forEach((value, index, array) => { |
|
|
|
|
if(array[index].organizationId!='5687316efa75479d96c0091a167a3b84'&&array[index].organizationName!='上海总队'){ |
|
|
|
|
if (array[index].organizationId != '5687316efa75479d96c0091a167a3b84' && array[index].organizationName != '上海总队') { |
|
|
|
|
this.addxdata.push(array[index].organizationName) |
|
|
|
|
this.addydata.push(array[index].count) |
|
|
|
|
} |
|
|
|
|