diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts index bc026a5..4cc7633 100644 --- a/src/app/ui/collection-tools/collection-tools.component.ts +++ b/src/app/ui/collection-tools/collection-tools.component.ts @@ -1080,7 +1080,6 @@ export class CollectionToolsComponent implements OnInit { } - //打开消防设施考题设定 openFireExamination () { console.log(1,this.beforeOneCheckedBuilding) @@ -1096,8 +1095,11 @@ export class CollectionToolsComponent implements OnInit { //上传考题 openUploadQuestions () { let treeData = JSON.parse( JSON.stringify(this.dataSource.data) ) - let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ) } - let dialogRef = this.dialog.open(uploadQuestions,{data}); + let nodes = JSON.parse( JSON.stringify( JSON.parse(sessionStorage.getItem('examNodeList')) ) ) + if (treeData && nodes) { + let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ), node: nodes } + let dialogRef = this.dialog.open(uploadQuestions,{data}); + } } //封装 刷新 tree 数据 diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts index ce064fc..162ed3b 100644 --- a/src/app/ui/collection-tools/examinationQuestions.ts +++ b/src/app/ui/collection-tools/examinationQuestions.ts @@ -146,7 +146,9 @@ export class uploadQuestions { defaultExpandedKeys = []; //展开指定的树节点 key值 defaultSelectedKeys = []; //指定选中的树节点 key值 renderData:any + ngOnInit(): void { + this.nodeInit() let data = JSON.parse(sessionStorage.getItem("试卷id")) data.forEach(item => { item.children.forEach(i => { @@ -155,6 +157,32 @@ export class uploadQuestions { }) this.renderData = data } + + nodeTreeData:any = []; //处置节点tree + //节点初始化 + nodeInit () { + let treeData = [] + this.data.node.forEach(element => { + element.title = element.name //name + element.key = element.id //id + element.children = [] //children + if (element.sitePlanId || element.buildingAreaId) { //是数据节点 + element.isLeaf = true + element.isDataNode = true + } else { //不是数据节点 + element.isLeaf = false + element.isDataNode = false + } + this.data.node.forEach(item=>{ + item.parentId === element.id? element.children.push(item) : null + }) + }); + this.data.node.forEach(element=>{ + !element.parentId? treeData.push(element) : null + }) + this.nodeTreeData = [...treeData] + } + nzEvent($event){ console.log($event) } @@ -188,6 +216,12 @@ export class uploadDisposalNodes { let isChecked = (this.nzTreeComponent.getTreeNodeByKey(element.id)).isChecked isChecked? checkList.push(element) : null }); + let galfList = this.nzTreeComponent.getHalfCheckedNodeList() + this.data.oldTreeData.forEach(element => { + galfList.forEach(elements => { + element.id == elements.origin.id? checkList.push(element) : null + }); + }); if (checkList.length) { this.dialogRef.close(checkList); } else { diff --git a/src/app/ui/collection-tools/uploadQuestions.html b/src/app/ui/collection-tools/uploadQuestions.html index a8d57c7..a891755 100644 --- a/src/app/ui/collection-tools/uploadQuestions.html +++ b/src/app/ui/collection-tools/uploadQuestions.html @@ -5,7 +5,7 @@
考核消防设施
-
+
+
考核处置节点
+
+ + + + +
+ +
+
+ +