Browse Source

Merge branch 'guangxi' of http://121.36.37.70:3000/shaojiahao/examSystem-Anxin into guangxi

智慧矿山应急安全培训、考核、演练管理系统
邵佳豪 2 years ago
parent
commit
96ea91424c
  1. 2
      src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.scss
  2. 66
      src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts

2
src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.scss

@ -51,7 +51,7 @@
} }
#zhidui{ #zhidui{
width: 100%; width: 100%;
height: 80%; height: 82%;
// margin-top: -60px; // margin-top: -60px;
// position: absolute; // position: absolute;
// top: 100px; // top: 100px;

66
src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts

@ -34,8 +34,9 @@ export class EchartsComponent implements OnInit {
"崇左支队", "崇左支队",
], ],
frequency: [18, 17, 14, 14, 12, 11, 15, 13, 12, 16, 16, 13, 18, 17, 12], frequency: [18, 17, 14, 14, 12, 11, 15, 13, 12, 16, 16, 13, 18, 17, 12],
number:[180, 170, 140, 140, 120, 110, 150, 130, 120, 160, 160, 130, 180, 170, 120] number: [
180, 170, 140, 140, 120, 110, 150, 130, 120, 160, 160, 130, 180, 170, 120,
],
}; };
zhiData2 = { zhiData2 = {
name: [ name: [
@ -55,8 +56,9 @@ export class EchartsComponent implements OnInit {
"崇左支队", "崇左支队",
], ],
frequency: [18, 17, 14, 14, 12, 11, 15, 13, 12, 16, 16, 13, 18, 17, 12], frequency: [18, 17, 14, 14, 12, 11, 15, 13, 12, 16, 16, 13, 18, 17, 12],
number:[180, 170, 140, 140, 120, 110, 150, 130, 120, 160, 160, 130, 180, 170, 120] number: [
180, 170, 140, 140, 120, 110, 150, 130, 120, 160, 160, 130, 180, 170, 120,
],
}; };
daData = { daData = {
name: [ name: [
@ -80,15 +82,15 @@ export class EchartsComponent implements OnInit {
frequency: [2, 3, 1, 1, 2, 1, 0, 1, 1, 0, 2, 0, 0, 1, 0], frequency: [2, 3, 1, 1, 2, 1, 0, 1, 1, 0, 2, 0, 0, 1, 0],
number: [30, 30, 10, 10, 20, 10, 0, 10, 10, 0, 20, 0, 0, 10, 0], number: [30, 30, 10, 10, 20, 10, 0, 10, 10, 0, 20, 0, 0, 10, 0],
}; };
jiuData = { jiuData = {
name:[ name: [
"南宁市青秀区仙葫消防救援站", "南宁市青秀区仙葫消防救援站",
"南宁市青秀区凤岭消防救援站", "南宁市青秀区凤岭消防救援站",
"南宁市青秀区柳沙消防救援站", "南宁市青秀区柳沙消防救援站",
], ],
frequency:[1, 1, 1], frequency: [1, 1, 1],
number:[8, 11, 11] number: [8, 11, 11],
}; };
staticExam = false; //考试统计 staticExam = false; //考试统计
@ -117,20 +119,25 @@ export class EchartsComponent implements OnInit {
this.examinationIndex = true; this.examinationIndex = true;
this.color = "#FF8678"; this.color = "#FF8678";
} }
let myChart = echarts.init(document.getElementById("zhidui"));
myChart.dispose();
this.initCharts(); this.initCharts();
} }
//后退 //后退
level=0 level = 0;
back(){ back() {
if(this.level!=0){ if (this.level != 0) {
if(this.level==1){ if (this.level == 1) {
this.zhiData=this.zhiData2 this.zhiData = this.zhiData2;
let myChart = echarts.init(document.getElementById("zhidui"));
}else{ myChart.clear();
this.zhiData=this.daData } else {
this.zhiData = this.daData;
let myChart = echarts.init(document.getElementById("zhidui"));
myChart.clear();
} }
this.initCharts() this.initCharts();
this.level=this.level-1 this.level = this.level - 1;
} }
} }
initCharts() { initCharts() {
@ -183,15 +190,17 @@ export class EchartsComponent implements OnInit {
}, },
show: true, show: true,
}, },
grid: { grid: {
left: '5%', left: "5%",
right: '5%', right: "5%",
bottom: '1%', bottom: "1%",
containLabel: true containLabel: true,
} , },
series: [ series: [
{ {
data: this.examinationIndex?this.zhiData.number: this.zhiData.frequency, data: this.examinationIndex
? this.zhiData.number
: this.zhiData.frequency,
type: "bar", type: "bar",
// showBackground: true, // showBackground: true,
backgroundStyle: { backgroundStyle: {
@ -224,14 +233,17 @@ export class EchartsComponent implements OnInit {
} }
clickFunc(e) { clickFunc(e) {
console.log(e); console.log(e);
let myChart = echarts.init(document.getElementById("zhidui"));
if (e.name.indexOf("支队") != -1) { if (e.name.indexOf("支队") != -1) {
this.zhiData = this.daData; this.zhiData = this.daData;
this.level=1 this.level = 1;
myChart.dispose();
this.initCharts(); this.initCharts();
} else if (e.name.indexOf("大队") != -1) { } else if (e.name.indexOf("大队") != -1) {
this.zhiData = this.jiuData; this.zhiData = this.jiuData;
this.level=2 this.level = 2;
myChart.dispose();
this.initCharts(); this.initCharts();
} else { } else {
window.open("home/statistic-examination/station-examinee"); window.open("home/statistic-examination/station-examinee");

Loading…
Cancel
Save