Browse Source

[完善]统计分析列表真实数据

智慧矿山应急安全培训、考核、演练管理系统
邵佳豪 2 years ago
parent
commit
e86f71c2d4
  1. 2
      src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html
  2. 2
      src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.ts
  3. 107
      src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts
  4. 24
      src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html
  5. 43
      src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts
  6. 16
      src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html
  7. 52
      src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts

2
src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html

@ -32,7 +32,7 @@
<tbody> <tbody>
<tr *ngFor="let item of tabledataSource;let key = index"> <tr *ngFor="let item of tabledataSource;let key = index">
<td>{{(PageNumber-1)*10+(key + 1)}}</td> <td>{{(PageNumber-1)*10+(key + 1)}}</td>
<td>{{item.examineeName || '/'}}</td> <td>{{item.examineeRealName || '/'}}</td>
<td>{{item.organizationName}}</td> <td>{{item.organizationName}}</td>
<td class="ratebox"> <td class="ratebox">
<nz-rate [ngModel]="item.overallQualityRating" [nzDisabled]="true"></nz-rate> <nz-rate [ngModel]="item.overallQualityRating" [nzDisabled]="true"></nz-rate>

2
src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.ts

@ -87,7 +87,7 @@ export class ExamineeCapacityComponent implements OnInit {
length; length;
getAlltabledate() { getAlltabledate() {
let paramsdata: any = { let paramsdata: any = {
ExamineeName: this.name || "", ExamineeRealName: this.name || "",
OrganizationId: this.Profiles.organizationId, OrganizationId: this.Profiles.organizationId,
ContainsChildren: this.orIdChecked, ContainsChildren: this.orIdChecked,
PageNumber: this.PageNumber, PageNumber: this.PageNumber,

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

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

24
src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html

@ -6,8 +6,12 @@
<input type="text" placeholder="请输入试卷名称" [(ngModel)]="name" /> <input type="text" placeholder="请输入试卷名称" [(ngModel)]="name" />
</div> </div>
<div class="queryField"> <div class="queryField">
<label>考试时间:</label> <label>考试开始时间:</label>
<input type="date" placeholder="请选择考试时间" [(ngModel)]="time" /> <input type="date" placeholder="请选择考试开始时间" [(ngModel)]="starttime" />
</div>
<div class="queryField">
<label>考试结束时间:</label>
<input type="date" placeholder="请选择考试结束时间" [(ngModel)]="endtime" />
</div> </div>
<div class="queryField"> <div class="queryField">
<button style="background-color: #07CDCF;" (click)="Submit()">查询</button> <button style="background-color: #07CDCF;" (click)="Submit()">查询</button>
@ -21,22 +25,24 @@
<th style="width: 15%;">编号</th> <th style="width: 15%;">编号</th>
<th style="width: 15%;">试卷名称</th> <th style="width: 15%;">试卷名称</th>
<th style="width: 25%;">考核机构</th> <th style="width: 25%;">考核机构</th>
<th style="width: 15%;">考试时间</th> <th style="width: 15%;">考试结束时间</th>
<th style="width: 15%;">试卷得分</th> <th style="width: 15%;">试卷得分</th>
<th style="width: 15%;">操作</th> <th style="width: 15%;">操作</th>
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let item of tabledataSource;let key = index"> <tr *ngFor="let item of tabledataSource;let key = index">
<td>{{key + 1}}</td> <td>{{(PageNumber-1)*10+(key + 1)}}</td>
<td>xxx试卷</td> <td>{{item.examinationName}}</td>
<td>{{item.organizationsName}}</td> <td>
<span style="margin: 0 2px;" *ngFor="let i of item.organizationNames">{{i}}</span>
</td>
<td> <td>
{{item.startTime|date:'yyyy-MM-dd HH:mm'}} {{item.endTime|date:'yyyy-MM-dd HH:mm'}}
</td> </td>
<td> <td>
85分 {{item.score}}
<td> <td>
<span style="color: #07CDCF;cursor: pointer;" (click)="To()">详情</span> <span style="color: #07CDCF;cursor: pointer;" (click)="To(item)">详情</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

43
src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts

@ -1,7 +1,7 @@
import { Component, OnInit } from "@angular/core"; import { Component, OnInit } from "@angular/core";
import { HttpClient } from "@angular/common/http"; import { HttpClient } from "@angular/common/http";
import { MatSnackBar } from "@angular/material/snack-bar"; import { MatSnackBar } from "@angular/material/snack-bar";
import { Router } from "@angular/router"; import { ActivatedRoute, Router } from "@angular/router";
import { TreeService } from "src/app/http-interceptors/tree.service"; import { TreeService } from "src/app/http-interceptors/tree.service";
@Component({ @Component({
@ -12,17 +12,20 @@ import { TreeService } from "src/app/http-interceptors/tree.service";
export class ExamineePapersComponent implements OnInit { export class ExamineePapersComponent implements OnInit {
constructor( constructor(
private router: Router, private router: Router,
private route: ActivatedRoute,
public http: HttpClient, public http: HttpClient,
public snackBar: MatSnackBar, public snackBar: MatSnackBar,
private tree: TreeService private tree: TreeService
) {} ) {}
examineeId;
ngOnInit(): void { ngOnInit(): void {
this.examineeId = this.route.snapshot.queryParams.examineeId;
//获得登陆组织机构id //获得登陆组织机构id
this.getProfiles().then((res) => { // this.getProfiles().then((res) => {
//过滤得到正确的组织机构tree // //过滤得到正确的组织机构tree
this.getOrganizations(); // this.getOrganizations();
}); // });
this.getAlltabledate(); this.getAlltabledate();
} }
//获取登录账号的个人资料 //获取登录账号的个人资料
@ -80,20 +83,26 @@ export class ExamineePapersComponent implements OnInit {
PageNumber = 1; PageNumber = 1;
PageSize = 10; PageSize = 10;
name; name;
time; starttime;
endtime;
orId; orId;
orIdChecked; orIdChecked;
tabledataSource; tabledataSource;
length; length;
getAlltabledate() { getAlltabledate() {
console.log(5, this.starttime);
let paramsdata: any = { let paramsdata: any = {
ExamineeId: this.examineeId,
ExaminationName: this.name || "",
EndTimeBegin: this.starttime ? this.starttime + " " + "0:0:0" : "",
EndTimeEnd: this.endtime ? this.endtime + " " + "23:59:59" : "",
PageNumber: this.PageNumber, PageNumber: this.PageNumber,
PageSize: this.PageSize, PageSize: this.PageSize,
OrganizationId: this.orId || "",
HasChildren: this.orIdChecked || "",
}; };
this.http this.http
.get("/api/Papers", { params: paramsdata }) .get("/api/ExamStatisticalAnalyses/ExaminationStatistics/Examinations", {
params: paramsdata,
})
.subscribe((data: any) => { .subscribe((data: any) => {
this.tabledataSource = data.items; this.tabledataSource = data.items;
this.length = data.totalCount; this.length = data.totalCount;
@ -104,11 +113,19 @@ export class ExamineePapersComponent implements OnInit {
this.PageNumber = e.pageIndex + 1; this.PageNumber = e.pageIndex + 1;
this.getAlltabledate(); this.getAlltabledate();
} }
To(){ To(item) {
window.open(`/reviewFiles?examId=646425b55f40644e9e82f267&paperType=1`) window.open(`/reviewFiles?examId=${item.examinationId}&paperType=1`);
} }
//查询按钮 //查询按钮
Submit() {} Submit() {
this.getAlltabledate();
}
//重置按钮 //重置按钮
Reset() {} Reset() {
this.name = "";
this.starttime = "";
this.endtime = "";
// this.orIdChecked = true;
this.getAlltabledate();
}
} }

16
src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html

@ -10,8 +10,8 @@
<nz-tree-select [nzDropdownClassName]="'maxHeightTreeSelect'" style="width: 250px" [(ngModel)]="orId" <nz-tree-select [nzDropdownClassName]="'maxHeightTreeSelect'" style="width: 250px" [(ngModel)]="orId"
[nzNodes]="nodes" nzPlaceHolder="请选择"> [nzNodes]="nodes" nzPlaceHolder="请选择">
</nz-tree-select> </nz-tree-select>
<mat-checkbox color="primary" style="margin-left: 26px;" [(ngModel)]="orIdChecked">包含下级 <!-- <mat-checkbox color="primary" style="margin-left: 26px;" [(ngModel)]="orIdChecked">包含下级
</mat-checkbox> </mat-checkbox> -->
</div> </div>
<div class="queryField"> <div class="queryField">
<button style="background-color: #07CDCF;" (click)="Submit()">查询</button> <button style="background-color: #07CDCF;" (click)="Submit()">查询</button>
@ -31,16 +31,16 @@
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let item of tabledataSource;let key = index"> <tr *ngFor="let item of tabledataSource;let key = index">
<td>{{key + 1}}</td> <td>{{(PageNumber-1)*10+(key + 1)}}</td>
<td>张三</td> <td>{{item.examineeRealName}}</td>
<td>广西总队</td> <td>{{item.organizationName}}</td>
<td> <td>
3 {{item.examinationTimes}}
</td> </td>
<td> <td>
85 {{item.averageScore}}
<td> <td>
<span style="color: #07CDCF;cursor: pointer;" (click)="To()">详情</span> <span style="color: #07CDCF;cursor: pointer;" (click)="To(item)">详情</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

52
src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts

@ -1,7 +1,7 @@
import { Component, OnInit } from "@angular/core"; import { Component, OnInit } from "@angular/core";
import { HttpClient } from "@angular/common/http"; import { HttpClient } from "@angular/common/http";
import { MatSnackBar } from "@angular/material/snack-bar"; import { MatSnackBar } from "@angular/material/snack-bar";
import { Router } from "@angular/router"; import { ActivatedRoute, Router } from "@angular/router";
import { TreeService } from "src/app/http-interceptors/tree.service"; import { TreeService } from "src/app/http-interceptors/tree.service";
@Component({ @Component({
@ -12,17 +12,18 @@ import { TreeService } from "src/app/http-interceptors/tree.service";
export class StationExamineeComponent implements OnInit { export class StationExamineeComponent implements OnInit {
constructor( constructor(
private router: Router, private router: Router,
private route: ActivatedRoute,
public http: HttpClient, public http: HttpClient,
public snackBar: MatSnackBar, public snackBar: MatSnackBar,
private tree: TreeService private tree: TreeService
) {} ) {}
ngOnInit(): void { ngOnInit(): void {
this.orId = this.route.snapshot.queryParams.organizationId;
//获得登陆组织机构id //获得登陆组织机构id
this.getProfiles().then((res) => { // this.getProfiles().then((res) => {
//过滤得到正确的组织机构tree //过滤得到正确的组织机构tree
this.getOrganizations(); // });
}); this.getOrganizations();
this.getAlltabledate(); this.getAlltabledate();
} }
//获取登录账号的个人资料 //获取登录账号的个人资料
@ -46,7 +47,9 @@ export class StationExamineeComponent implements OnInit {
this.http.get("/api/Organizations").subscribe((data: any) => { this.http.get("/api/Organizations").subscribe((data: any) => {
this.allorganizations = data; this.allorganizations = data;
this.treedata = this.tree.toTree(data); this.treedata = this.tree.toTree(data);
this.getpresentOrganization(); // this.orId = this.organizationId;
this.nodes = this.treedata;
// this.getpresentOrganization();
}); });
} }
//得到当前单位所在组织机构的tree型数据 //得到当前单位所在组织机构的tree型数据
@ -86,14 +89,17 @@ export class StationExamineeComponent implements OnInit {
length; length;
getAlltabledate() { getAlltabledate() {
let paramsdata: any = { let paramsdata: any = {
ExamineeRealName: this.name || "",
OrganizationId: this.orId || "",
PageNumber: this.PageNumber, PageNumber: this.PageNumber,
PageSize: this.PageSize, PageSize: this.PageSize,
OrganizationId: this.orId || "",
HasChildren: this.orIdChecked || "",
}; };
this.http this.http
.get("/api/Papers", { params: paramsdata }) .get("/api/ExamStatisticalAnalyses/ExaminationStatistics/Examinees", {
params: paramsdata,
})
.subscribe((data: any) => { .subscribe((data: any) => {
console.log("数据", data);
this.tabledataSource = data.items; this.tabledataSource = data.items;
this.length = data.totalCount; this.length = data.totalCount;
}); });
@ -103,11 +109,29 @@ export class StationExamineeComponent implements OnInit {
this.PageNumber = e.pageIndex + 1; this.PageNumber = e.pageIndex + 1;
this.getAlltabledate(); this.getAlltabledate();
} }
To() { To(item) {
this.router.navigate(["/home/statistic-examination/examinee-papers"]); //登陆成功跳转页面 this.router.navigate(["/home/statistic-examination/examinee-papers"], {
queryParams: {
examineeId: item.examineeId,
},
}); //登陆成功跳转页面
} }
//查询按钮 //查询按钮
Submit() {} Submit() {
if (!this.orId) {
this.snackBar.open("组织机构不能为空", "确定", {
verticalPosition: "top",
duration: 3000,
});
return;
}
this.getAlltabledate();
}
//重置按钮 //重置按钮
Reset() {} Reset() {
this.name = "";
this.orId = this.route.snapshot.queryParams.organizationId;
// this.orIdChecked = true;
this.getAlltabledate();
}
} }

Loading…
Cancel
Save