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) => {