From 65b74a0b7f2879ba7d3793313dac78963dc2dda2 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 17 May 2023 09:21:22 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=A4=84=E7=BD=AE=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E9=BB=98=E8=AE=A4=E9=80=89=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/ui/collection-tools/examinationQuestions.ts | 8 +++++++- src/app/ui/collection-tools/uploadDisposalNodes.html | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) 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 @@