From 43225f29e421519160983284b564a4fbebe530f8 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Fri, 19 May 2023 09:38:45 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E8=83=BD=E5=8A=9B=E5=88=86?= =?UTF-8?q?=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../examinee-capacity.component.html | 12 +++---- .../examinee-capacity.component.ts | 35 ++++++++++++++----- .../station-examinee.component.ts | 2 +- 3 files changed, 34 insertions(+), 15 deletions(-) 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 4b5d7d5..7127561 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 @@ -31,18 +31,18 @@ - {{key + 1}} - 李四 - xxx救援站 + {{(PageNumber-1)*10+(key + 1)}} + {{item.examineeName || '/'}} + {{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 922bb69..c0fe6d9 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 @@ -22,8 +22,8 @@ export class ExamineeCapacityComponent implements OnInit { this.getProfiles().then((res) => { //过滤得到正确的组织机构tree this.getOrganizations(); + this.getAlltabledate(); }); - this.getAlltabledate(); } //获取登录账号的个人资料 Profiles: any; @@ -40,12 +40,13 @@ export class ExamineeCapacityComponent implements OnInit { //获得所有组织机构 allorganizations; treedata; - nodes; + nodes = []; expandedKeys = []; getOrganizations() { this.http.get("/api/Organizations").subscribe((data: any) => { this.allorganizations = data; this.treedata = this.tree.toTree(data); + this.orId = this.Profiles.organizationId; this.getpresentOrganization(); }); } @@ -81,19 +82,23 @@ export class ExamineeCapacityComponent implements OnInit { PageSize = 10; name; orId; - orIdChecked; + orIdChecked = true; tabledataSource; length; getAlltabledate() { let paramsdata: any = { + ExamineeName: this.name || "", + OrganizationId: this.Profiles.organizationId, + ContainsChildren: this.orIdChecked, PageNumber: this.PageNumber, PageSize: this.PageSize, - OrganizationId: this.orId || "", - HasChildren: this.orIdChecked || "", }; this.http - .get("/api/Papers", { params: paramsdata }) + .get("/api/ExamStatisticalAnalyses/AbilityAnalysis", { + params: paramsdata, + }) .subscribe((data: any) => { + console.log("数据", data); this.tabledataSource = data.items; this.length = data.totalCount; }); @@ -105,7 +110,21 @@ export class ExamineeCapacityComponent implements OnInit { } //查询按钮 - Submit() {} + Submit() { + if (!this.orId) { + this.snackBar.open("组织机构不能为空", "确定", { + verticalPosition: "top", + duration: 3000, + }); + return; + } + this.getAlltabledate(); + } //重置按钮 - Reset() {} + Reset() { + this.name = ""; + this.orId = this.Profiles.organizationId; + this.orIdChecked = true; + this.getAlltabledate(); + } } 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 47fd940..bfbae66 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 @@ -40,7 +40,7 @@ export class StationExamineeComponent implements OnInit { //获得所有组织机构 allorganizations; treedata; - nodes; + nodes = []; expandedKeys = []; getOrganizations() { this.http.get("/api/Organizations").subscribe((data: any) => {