|
|
|
@ -26,7 +26,7 @@ export class examinationQuestions {
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.renderData = this.data.treeData |
|
|
|
|
if(JSON.parse(sessionStorage.getItem('tree型数据')) && JSON.parse(sessionStorage.getItem('tree型数据'))[this.data.buildFloorData.floorData.id]){ |
|
|
|
|
console.log(123,JSON.parse(sessionStorage.getItem('tree型数据'))[this.data.buildFloorData.floorData.id]) |
|
|
|
|
// console.log(123,JSON.parse(sessionStorage.getItem('tree型数据'))[this.data.buildFloorData.floorData.id])
|
|
|
|
|
this.defaultCheckedKeys = JSON.parse(sessionStorage.getItem('tree型数据'))[this.data.buildFloorData.floorData.id] |
|
|
|
|
} |
|
|
|
|
this.data.treeData.forEach(element => { |
|
|
|
@ -96,32 +96,38 @@ export class examinationQuestions {
|
|
|
|
|
let data = JSON.parse(sessionStorage.getItem("试卷id"))
|
|
|
|
|
|
|
|
|
|
if(data && data.length != 0){ |
|
|
|
|
console.log(1) |
|
|
|
|
let ind = null |
|
|
|
|
data.forEach((item,index) => { |
|
|
|
|
if(item.key == obj.key){ |
|
|
|
|
ind = index |
|
|
|
|
ind = index + 1 |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
if(ind){ |
|
|
|
|
if(checkList.length != 0){ |
|
|
|
|
data[ind].children = checkList |
|
|
|
|
data[ind - 1].children = checkList |
|
|
|
|
}else{ |
|
|
|
|
data.splice(ind,1) |
|
|
|
|
data.splice(ind - 1,1) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
data.push(obj) |
|
|
|
|
} |
|
|
|
|
sessionStorage.setItem("试卷id",JSON.stringify(data)) |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
console.log(2) |
|
|
|
|
data = [] |
|
|
|
|
data[0] = obj |
|
|
|
|
console.log(123,data) |
|
|
|
|
sessionStorage.setItem("试卷id",JSON.stringify(data)) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
this.snackBar.open('当层消防设施考题设置完成','确定',config); |
|
|
|
|
// this.dialogRef.close()
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|