|
|
|
@ -1134,15 +1134,15 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//处理 tree 数据结构
|
|
|
|
|
handleTreeData (storeyData) { |
|
|
|
|
|
|
|
|
|
//storeyData为当前楼层拥有的消防设施
|
|
|
|
|
this.storeyData = storeyData |
|
|
|
|
let data = this.allFireElements //所有消防要素模板
|
|
|
|
|
let treeData = [] //tree型 处理完成后的数据
|
|
|
|
|
|
|
|
|
|
data.forEach(element => { |
|
|
|
|
element.isTemplate = true //添加模板标识
|
|
|
|
|
element.isLook = true //添加是否可见标识
|
|
|
|
|
element.name!='其他'? element.children = [] : null |
|
|
|
|
|
|
|
|
|
element.name != '其他' ? element.children = [] : null |
|
|
|
|
if(storeyData){ |
|
|
|
|
for(let key in storeyData.data){ |
|
|
|
|
storeyData.data[key].isLookPattern = true |
|
|
|
@ -1161,8 +1161,6 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
element.children.push(storeyData.data[key]) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1172,7 +1170,9 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
data.forEach(element => { |
|
|
|
|
if (!element.parentId) { treeData.push(element) } |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.dataSource.data = treeData |
|
|
|
|
|
|
|
|
|
this.treeControl.expandAll() |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -1203,7 +1203,7 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
this.canvas.setHighlight(iconHighLightArr) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//点击数节点的显示隐藏icon
|
|
|
|
|
//点击树节点的显示隐藏icon
|
|
|
|
|
clickLookItem(node){ |
|
|
|
|
|
|
|
|
|
//修改真实素材islook属性
|
|
|
|
@ -1214,9 +1214,16 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//所有消防要素模板变化islook值
|
|
|
|
|
if(node.isTemplate && node.name == "其他"){ |
|
|
|
|
this.allFireElements.forEach(item=>{ |
|
|
|
|
if(item.name == "其他"){ |
|
|
|
|
item.isLook = !item.isLook |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
if(node.isTemplate){ |
|
|
|
|
this.allFireElements.forEach(item=>{ |
|
|
|
|
if(item.id == node.id || item.name == "其他"){ |
|
|
|
|
if(item.id == node.id){ |
|
|
|
|
item.isLook = !item.isLook |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
@ -1270,6 +1277,7 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
iconVisibleArr.push(node.id) |
|
|
|
|
} |
|
|
|
|
this.canvas.setIconVisible(iconVisibleArr,!node.isLook) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//计算 可视区域内宽度, 是否缩放背景图
|
|
|
|
|