|
|
|
@ -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(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|