diff --git a/src/app/examiner/review-files/review-files.component.ts b/src/app/examiner/review-files/review-files.component.ts index 89f5e72..8a6c3fc 100644 --- a/src/app/examiner/review-files/review-files.component.ts +++ b/src/app/examiner/review-files/review-files.component.ts @@ -89,7 +89,7 @@ export class ReviewFilesComponent implements OnInit { const config = new MatSnackBarConfig(); config.verticalPosition = 'top'; config.duration = 5000 - this.snackBar.open('刷新成功','确定',config); + // this.snackBar.open('刷新成功','确定',config); } resolve(1) }) @@ -290,7 +290,10 @@ export class ReviewFilesComponent implements OnInit { const config = new MatSnackBarConfig(); config.verticalPosition = 'top'; config.duration = 5000 - this.snackBar.open('阅卷结果提交成功','确定',config); + this.snackBar.open('阅卷结果提交成功,页面将于一秒后关闭!','确定',config); + setTimeout(() => { + window.close() + }, 1000); }) } diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts index 17c0ffc..9307fa3 100644 --- a/src/app/ui/collection-tools/examinationQuestions.ts +++ b/src/app/ui/collection-tools/examinationQuestions.ts @@ -392,9 +392,15 @@ export class uploadDisposalNodes { ) {} @ViewChild("nzTreeComponent", { static: false }) nzTreeComponent!: NzTreeComponent; - + defaultCheckedKeys = []; ngOnInit(): void { this.treeData = [...this.data.treeData]; + let checkedArr = []; + // console.log(666, JSON.parse(sessionStorage.getItem("examNodeList"))); + JSON.parse(sessionStorage.getItem("examNodeList")).forEach((element) => { + checkedArr.push(element.id); + }); + this.defaultCheckedKeys = [...checkedArr]; } treeData: any = []; //tree diff --git a/src/app/ui/collection-tools/uploadDisposalNodes.html b/src/app/ui/collection-tools/uploadDisposalNodes.html index 5b2939a..1a6715e 100644 --- a/src/app/ui/collection-tools/uploadDisposalNodes.html +++ b/src/app/ui/collection-tools/uploadDisposalNodes.html @@ -1,7 +1,8 @@
- +