Browse Source

[完善] 考核处置节点保存

master
陈鹏飞 4 years ago
parent
commit
8b6ca8a897
  1. 8
      src/app/ui/collection-tools/collection-tools.component.ts
  2. 34
      src/app/ui/collection-tools/examinationQuestions.ts
  3. 19
      src/app/ui/collection-tools/uploadQuestions.html

8
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 数据

34
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 {

19
src/app/ui/collection-tools/uploadQuestions.html

@ -5,7 +5,7 @@
<textarea style="width: 100%;background-color: #dfe0e0;border: none;outline: none;height: 50px;border-radius: 5px;resize: none;" placeholder="请填写考试要点" [(ngModel)]="data.question.keynote"></textarea>
</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核消防设施</div>
<div style="height: 200px;overflow-y: auto;margin-bottom: 25px;">
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
@ -27,6 +27,23 @@
</ng-template>
<!-- 消防列表树 -->
</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核处置节点</div>
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
[nzData]="nodeTreeData"
nzMultiple
[nzTreeTemplate]="nzTreeTemplate"
>
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
<label class="overflowText textNode">{{node.origin.name || node.origin.Name}}</label>
</div>
</ng-template>
<!-- 消防列表树 -->
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>

Loading…
Cancel
Save