|
|
|
@ -8,18 +8,17 @@ declare var echarts: any;
|
|
|
|
|
styleUrls: ["./echarts.component.scss"], |
|
|
|
|
}) |
|
|
|
|
export class EchartsComponent implements OnInit { |
|
|
|
|
constructor(public router: Router,private http: HttpClient,) {} |
|
|
|
|
constructor(public router: Router, private http: HttpClient) {} |
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.getProfiles() |
|
|
|
|
this.getProfiles(); |
|
|
|
|
// window.setTimeout(() => {
|
|
|
|
|
// this.initCharts();
|
|
|
|
|
// }, 0);
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
zhutu; //柱状图实例
|
|
|
|
|
echartsData |
|
|
|
|
echartsData; |
|
|
|
|
zhiData = { |
|
|
|
|
name: [], |
|
|
|
|
number: [], |
|
|
|
@ -33,32 +32,38 @@ export class EchartsComponent implements OnInit {
|
|
|
|
|
this.getExamStatisticalAnalyses(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
organizationId |
|
|
|
|
oldOrganizationId |
|
|
|
|
queryMode=0 |
|
|
|
|
getExamStatisticalAnalyses(){ |
|
|
|
|
let params:any={ |
|
|
|
|
QueryMode:this.queryMode, |
|
|
|
|
OrganizationId:this.organizationId?this.organizationId:this.Profiles.organizationId, |
|
|
|
|
PageNumber:1, |
|
|
|
|
PageSize:9999 |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/ExamStatisticalAnalyses/ExaminationStatistics',{params:params}).subscribe((res:any)=>{ |
|
|
|
|
console.log(res); |
|
|
|
|
if(this.level==1){ |
|
|
|
|
this.oldOrganizationId=params.OrganizationId |
|
|
|
|
} |
|
|
|
|
this.echartsData=res |
|
|
|
|
this.zhiData = { |
|
|
|
|
name: [], |
|
|
|
|
number: [], |
|
|
|
|
}; |
|
|
|
|
this.echartsData.forEach(element => { |
|
|
|
|
this.zhiData.name.push(element.organizationName) |
|
|
|
|
this.zhiData.number.push(element.count) |
|
|
|
|
organizationId; |
|
|
|
|
oldOrganizationId; |
|
|
|
|
queryMode = 0; |
|
|
|
|
getExamStatisticalAnalyses() { |
|
|
|
|
let params: any = { |
|
|
|
|
QueryMode: this.queryMode, |
|
|
|
|
OrganizationId: this.organizationId |
|
|
|
|
? this.organizationId |
|
|
|
|
: this.Profiles.organizationId, |
|
|
|
|
PageNumber: 1, |
|
|
|
|
PageSize: 9999, |
|
|
|
|
}; |
|
|
|
|
this.http |
|
|
|
|
.get("/api/ExamStatisticalAnalyses/ExaminationStatistics", { |
|
|
|
|
params: params, |
|
|
|
|
}) |
|
|
|
|
.subscribe((res: any) => { |
|
|
|
|
console.log(res); |
|
|
|
|
if (this.level == 1) { |
|
|
|
|
this.oldOrganizationId = params.OrganizationId; |
|
|
|
|
} |
|
|
|
|
this.echartsData = res; |
|
|
|
|
this.zhiData = { |
|
|
|
|
name: [], |
|
|
|
|
number: [], |
|
|
|
|
}; |
|
|
|
|
this.echartsData.forEach((element) => { |
|
|
|
|
this.zhiData.name.push(element.organizationName); |
|
|
|
|
this.zhiData.number.push(element.count); |
|
|
|
|
}); |
|
|
|
|
this.initCharts(); |
|
|
|
|
}); |
|
|
|
|
this.initCharts(); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
title = "考试频次(次)"; |
|
|
|
@ -70,31 +75,31 @@ export class EchartsComponent implements OnInit {
|
|
|
|
|
this.title = "考试频次(次)"; |
|
|
|
|
this.examinationIndex = false; |
|
|
|
|
this.color = "#41CDFC"; |
|
|
|
|
this.queryMode=0 |
|
|
|
|
this.queryMode = 0; |
|
|
|
|
} else { |
|
|
|
|
this.title = "考试人数(个)"; |
|
|
|
|
this.examinationIndex = true; |
|
|
|
|
this.color = "#FF8678"; |
|
|
|
|
this.queryMode=1 |
|
|
|
|
this.queryMode = 1; |
|
|
|
|
} |
|
|
|
|
let myChart = echarts.init(document.getElementById("zhidui")); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
myChart.dispose(); |
|
|
|
|
this.getProfiles() |
|
|
|
|
this.getProfiles(); |
|
|
|
|
} |
|
|
|
|
//后退
|
|
|
|
|
level = 0; |
|
|
|
|
back() { |
|
|
|
|
if(this.level==1){ |
|
|
|
|
this.organizationId=this.Profiles.organizationId |
|
|
|
|
}else if(this.level==2){ |
|
|
|
|
this.organizationId=this.oldOrganizationId |
|
|
|
|
if (this.level == 1) { |
|
|
|
|
this.organizationId = this.Profiles.organizationId; |
|
|
|
|
} else if (this.level == 2) { |
|
|
|
|
this.organizationId = this.oldOrganizationId; |
|
|
|
|
} |
|
|
|
|
this.level=this.level-1 |
|
|
|
|
this.level = this.level - 1; |
|
|
|
|
let myChart = echarts.init(document.getElementById("zhidui")); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
myChart.dispose(); |
|
|
|
|
this.getExamStatisticalAnalyses() |
|
|
|
|
this.getExamStatisticalAnalyses(); |
|
|
|
|
} |
|
|
|
|
initCharts() { |
|
|
|
|
var detailPlanEchart = echarts.init(document.getElementById("zhidui")); |
|
|
|
@ -115,7 +120,7 @@ export class EchartsComponent implements OnInit {
|
|
|
|
|
fontSize: 12, |
|
|
|
|
lineHeight: 31, |
|
|
|
|
interval: 0, |
|
|
|
|
rotate: this.zhiData.name.length<15?0:40, |
|
|
|
|
rotate: this.zhiData.name.length < 15 ? 0 : 40, |
|
|
|
|
}, |
|
|
|
|
axisLine: { |
|
|
|
|
show: false, |
|
|
|
@ -132,7 +137,6 @@ export class EchartsComponent implements OnInit {
|
|
|
|
|
axisLabel: { |
|
|
|
|
fontSize: 18, |
|
|
|
|
lineHeight: 31, |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
axisTick: { |
|
|
|
|
show: false, |
|
|
|
@ -192,16 +196,19 @@ export class EchartsComponent implements OnInit {
|
|
|
|
|
clickFunc(e) { |
|
|
|
|
let myChart = echarts.init(document.getElementById("zhidui")); |
|
|
|
|
console.log(e); |
|
|
|
|
this.echartsData.forEach(element=>{ |
|
|
|
|
if(element.organizationName==e.name&&element.level!=3){ |
|
|
|
|
this.organizationId=element.organizationId |
|
|
|
|
this.level=this.level+1 |
|
|
|
|
this.echartsData.forEach((element) => { |
|
|
|
|
if (element.organizationName == e.name && element.level != 3) { |
|
|
|
|
this.organizationId = element.organizationId; |
|
|
|
|
this.level = this.level + 1; |
|
|
|
|
myChart.dispose(); |
|
|
|
|
this.getExamStatisticalAnalyses() |
|
|
|
|
}else if(element.organizationName==e.name&&element.level==3){ |
|
|
|
|
window.open("home/statistic-examination/station-examinee?organizationId="+element.organizationId); |
|
|
|
|
this.getExamStatisticalAnalyses(); |
|
|
|
|
} else if (element.organizationName == e.name && element.level == 3) { |
|
|
|
|
window.open( |
|
|
|
|
"home/statistic-examination/station-examinee?organizationId=" + |
|
|
|
|
element.organizationId |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
// if (e.name.indexOf("支队") != -1) {
|
|
|
|
|
// this.zhiData = this.daData;
|
|
|
|
|
// this.level = 1;
|
|
|
|
|