|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
* @Author: sueRimn |
|
|
|
|
* @Date: 2020-12-11 16:34:26 |
|
|
|
|
* @LastEditors: sueRimn |
|
|
|
|
* @LastEditTime: 2020-12-12 09:13:04 |
|
|
|
|
* @LastEditTime: 2020-12-13 10:13:54 |
|
|
|
|
*/ |
|
|
|
|
import { Component, OnInit, ViewChild, Inject } from '@angular/core'; |
|
|
|
|
import { HttpClient } from '@angular/common/http' |
|
|
|
@ -30,9 +30,13 @@ export class ExaminerNewOneComponent implements OnInit {
|
|
|
|
|
constructor(private http:HttpClient,private router:Router,private route:ActivatedRoute,private tree: TreeService,public dialog: MatDialog,public snackBar: MatSnackBar) { } |
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
//this.getAllKeyUnit();
|
|
|
|
|
this.getunitdata(); |
|
|
|
|
this.getOrganizations(); |
|
|
|
|
this.getUnittype(); |
|
|
|
|
this.getAllKeyUnit(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
removeClass=document.getElementsByClassName("mat-form-field-underline") |
|
|
|
|
private _transformer = (node, level: number) => { //初始化tree
|
|
|
|
|
return { |
|
|
|
|
expandable: !!node.children && node.children.length > 0, |
|
|
|
@ -62,7 +66,7 @@ export class ExaminerNewOneComponent implements OnInit {
|
|
|
|
|
pageSizeOptions: number[] = [10] //设置每页条数
|
|
|
|
|
PageNumber:any //第几页
|
|
|
|
|
|
|
|
|
|
displayedColumns: string[] = ['checked','Follow','unitname','integrity','jurisdictionsquadron', 'unittype','scc', 'time','operation']; |
|
|
|
|
displayedColumns: string[] = ['checked','unitname','jurisdictionsquadron', 'unittype','scc']; |
|
|
|
|
tabledataSource:any |
|
|
|
|
allorganizations:any |
|
|
|
|
oldDataSource:any; //原始表格数据
|
|
|
|
@ -213,9 +217,9 @@ export class ExaminerNewOneComponent implements OnInit {
|
|
|
|
|
Sort: this.integritySort ? 'integrityscore' : '', |
|
|
|
|
SortType: this.integritySort || '', |
|
|
|
|
} |
|
|
|
|
console.log(paramsdata) |
|
|
|
|
//console.log(paramsdata)
|
|
|
|
|
this.http.get("/api/Companies",{params:paramsdata}).subscribe((data:any)=>{ |
|
|
|
|
console.log(data) |
|
|
|
|
//console.log(data)
|
|
|
|
|
this.length = data.totalCount |
|
|
|
|
this.allKeyUnitInfo = data |
|
|
|
|
// data.items.sort( (a,b) => {
|
|
|
|
@ -224,9 +228,21 @@ export class ExaminerNewOneComponent implements OnInit {
|
|
|
|
|
data.items.forEach( (item,index) => { |
|
|
|
|
item.integrity = this.wanzhengduArr[index] |
|
|
|
|
}) |
|
|
|
|
console.log(789,data.items) |
|
|
|
|
//console.log(789,data.items)
|
|
|
|
|
this.tabledataSource = new MatTableDataSource(data.items); |
|
|
|
|
//console.log(this.tabledataSource)
|
|
|
|
|
if(this.selectedunitArr.length!=0){ |
|
|
|
|
for(var i=0;i<this.tabledataSource.filteredData.length;i++){ |
|
|
|
|
for(var j=0;j<this.selectedunitArr.length;j++){ |
|
|
|
|
if(this.tabledataSource.filteredData[i].id==this.selectedunitArr[j].id){ |
|
|
|
|
this.tabledataSource.filteredData[i].checked=this.selectedunitArr[j].checked |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
//console.log(this.tabledataSource)
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//得到当前单位信息
|
|
|
|
|
getunitdata(){ |
|
|
|
@ -289,10 +305,45 @@ export class ExaminerNewOneComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
selectedunitArr:any =[] //选中单位的数组
|
|
|
|
|
selectedunitArr:any =JSON.parse(localStorage.getItem("checkedWork"))||[] //选中单位的数组
|
|
|
|
|
deleteByid=""//根据id取消选中
|
|
|
|
|
//勾选框事件
|
|
|
|
|
checkChange(e,element){ |
|
|
|
|
console.log(e,element) |
|
|
|
|
element.checked = e.checked |
|
|
|
|
if(element.checked){ |
|
|
|
|
this.selectedunitArr.push(element) |
|
|
|
|
} |
|
|
|
|
else{ |
|
|
|
|
for(var i=0;i<this.selectedunitArr.length;i++){ |
|
|
|
|
if(this.selectedunitArr[i].id==element.companyIntegrityScore.companyId){ |
|
|
|
|
this.selectedunitArr.splice(i,1) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
console.log(this.selectedunitArr) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//删除某一个单位信息
|
|
|
|
|
deleteWork(e){ |
|
|
|
|
console.log(e.target.id) |
|
|
|
|
console.log(this.tabledataSource.data) |
|
|
|
|
for(var i=0;i<this.selectedunitArr.length;i++){ |
|
|
|
|
if(this.selectedunitArr[i].id==e.target.id){ |
|
|
|
|
this.selectedunitArr.splice(i,1) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
for(var i=0;i<this.tabledataSource.data.length;i++){ |
|
|
|
|
if(this.tabledataSource.data[i].id==e.target.id){ |
|
|
|
|
this.tabledataSource.data[i].checked=false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//下一步事件
|
|
|
|
|
nextClick(){ |
|
|
|
|
//console.log(this.selectedunitArr)
|
|
|
|
|
localStorage.setItem("checkedWork",JSON.stringify(this.selectedunitArr) ) |
|
|
|
|
this.router.navigateByUrl("/examiner/create-test-score") |
|
|
|
|
} |
|
|
|
|
//编辑单位信息
|
|
|
|
|
editunit(){ |
|
|
|
@ -391,5 +442,7 @@ export class ExaminerNewOneComponent implements OnInit {
|
|
|
|
|
closediv(){ |
|
|
|
|
this.isorganizationbox = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|