diff --git a/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html b/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html index 7127561..8a6464a 100644 --- a/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html +++ b/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.html @@ -32,7 +32,7 @@ {{(PageNumber-1)*10+(key + 1)}} - {{item.examineeName || '/'}} + {{item.examineeRealName || '/'}} {{item.organizationName}} diff --git a/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.ts b/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.ts index c0fe6d9..b286324 100644 --- a/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.ts +++ b/src/app/examiner/statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component.ts @@ -87,7 +87,7 @@ export class ExamineeCapacityComponent implements OnInit { length; getAlltabledate() { let paramsdata: any = { - ExamineeName: this.name || "", + ExamineeRealName: this.name || "", OrganizationId: this.Profiles.organizationId, ContainsChildren: this.orIdChecked, PageNumber: this.PageNumber, diff --git a/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts b/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts index ba25fb8..1797741 100644 --- a/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts +++ b/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts @@ -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; diff --git a/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html b/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html index 79a3ca5..7ae61f5 100644 --- a/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html +++ b/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.html @@ -6,8 +6,12 @@
- - + + +
+
+ +
@@ -21,22 +25,24 @@ 编号 试卷名称 考核机构 - 考试时间 + 考试结束时间 试卷得分 操作 - {{key + 1}} - xxx试卷 - {{item.organizationsName}} + {{(PageNumber-1)*10+(key + 1)}} + {{item.examinationName}} + + {{i}} + - {{item.startTime|date:'yyyy-MM-dd HH:mm'}} + {{item.endTime|date:'yyyy-MM-dd HH:mm'}} - 85分 + {{item.score}} - 详情 + 详情 diff --git a/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts b/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts index 12b99f2..183624f 100644 --- a/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts +++ b/src/app/examiner/statistic-analysis/examStatistics/examinee-papers/examinee-papers.component.ts @@ -1,7 +1,7 @@ import { Component, OnInit } from "@angular/core"; import { HttpClient } from "@angular/common/http"; 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"; @Component({ @@ -12,17 +12,20 @@ import { TreeService } from "src/app/http-interceptors/tree.service"; export class ExamineePapersComponent implements OnInit { constructor( private router: Router, + private route: ActivatedRoute, public http: HttpClient, public snackBar: MatSnackBar, private tree: TreeService ) {} + examineeId; ngOnInit(): void { + this.examineeId = this.route.snapshot.queryParams.examineeId; //获得登陆组织机构id - this.getProfiles().then((res) => { - //过滤得到正确的组织机构tree - this.getOrganizations(); - }); + // this.getProfiles().then((res) => { + // //过滤得到正确的组织机构tree + // this.getOrganizations(); + // }); this.getAlltabledate(); } //获取登录账号的个人资料 @@ -80,20 +83,26 @@ export class ExamineePapersComponent implements OnInit { PageNumber = 1; PageSize = 10; name; - time; + starttime; + endtime; orId; orIdChecked; tabledataSource; length; getAlltabledate() { + console.log(5, this.starttime); 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, PageSize: this.PageSize, - OrganizationId: this.orId || "", - HasChildren: this.orIdChecked || "", }; this.http - .get("/api/Papers", { params: paramsdata }) + .get("/api/ExamStatisticalAnalyses/ExaminationStatistics/Examinations", { + params: paramsdata, + }) .subscribe((data: any) => { this.tabledataSource = data.items; this.length = data.totalCount; @@ -104,11 +113,19 @@ export class ExamineePapersComponent implements OnInit { this.PageNumber = e.pageIndex + 1; this.getAlltabledate(); } - To(){ - window.open(`/reviewFiles?examId=646425b55f40644e9e82f267&paperType=1`) + To(item) { + 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(); + } } diff --git a/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html b/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html index 358fcc6..a7f0403 100644 --- a/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html +++ b/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.html @@ -10,8 +10,8 @@ - 包含下级 - +
@@ -31,16 +31,16 @@ - {{key + 1}} - 张三 - 广西总队 + {{(PageNumber-1)*10+(key + 1)}} + {{item.examineeRealName}} + {{item.organizationName}} - 3次 + {{item.examinationTimes}}次 - 85分 + {{item.averageScore}}分 - 详情 + 详情 diff --git a/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts b/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts index bfbae66..8d8c564 100644 --- a/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts +++ b/src/app/examiner/statistic-analysis/examStatistics/station-examinee/station-examinee.component.ts @@ -1,7 +1,7 @@ import { Component, OnInit } from "@angular/core"; import { HttpClient } from "@angular/common/http"; 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"; @Component({ @@ -12,17 +12,18 @@ import { TreeService } from "src/app/http-interceptors/tree.service"; export class StationExamineeComponent implements OnInit { constructor( private router: Router, + private route: ActivatedRoute, public http: HttpClient, public snackBar: MatSnackBar, private tree: TreeService ) {} - ngOnInit(): void { + this.orId = this.route.snapshot.queryParams.organizationId; //获得登陆组织机构id - this.getProfiles().then((res) => { - //过滤得到正确的组织机构tree - this.getOrganizations(); - }); + // this.getProfiles().then((res) => { + //过滤得到正确的组织机构tree + // }); + this.getOrganizations(); this.getAlltabledate(); } //获取登录账号的个人资料 @@ -46,7 +47,9 @@ export class StationExamineeComponent implements OnInit { this.http.get("/api/Organizations").subscribe((data: any) => { this.allorganizations = data; this.treedata = this.tree.toTree(data); - this.getpresentOrganization(); + // this.orId = this.organizationId; + this.nodes = this.treedata; + // this.getpresentOrganization(); }); } //得到当前单位所在组织机构的tree型数据 @@ -86,14 +89,17 @@ export class StationExamineeComponent implements OnInit { length; getAlltabledate() { let paramsdata: any = { + ExamineeRealName: this.name || "", + OrganizationId: this.orId || "", PageNumber: this.PageNumber, PageSize: this.PageSize, - OrganizationId: this.orId || "", - HasChildren: this.orIdChecked || "", }; this.http - .get("/api/Papers", { params: paramsdata }) + .get("/api/ExamStatisticalAnalyses/ExaminationStatistics/Examinees", { + params: paramsdata, + }) .subscribe((data: any) => { + console.log("数据", data); this.tabledataSource = data.items; this.length = data.totalCount; }); @@ -103,11 +109,29 @@ export class StationExamineeComponent implements OnInit { this.PageNumber = e.pageIndex + 1; this.getAlltabledate(); } - To() { - this.router.navigate(["/home/statistic-examination/examinee-papers"]); //登陆成功跳转页面 + To(item) { + 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(); + } }