|
|
|
@ -1171,7 +1171,35 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
if (!element.parentId) { treeData.push(element) } |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.dataSource.data = treeData |
|
|
|
|
function recursionFilterEmpty(originalList, result) { |
|
|
|
|
for(let i = 0, length = originalList.length; i < length; i++) { |
|
|
|
|
const item = originalList[i]; |
|
|
|
|
if (item.PropertyInfos) { |
|
|
|
|
// 最内层
|
|
|
|
|
result.push(item); |
|
|
|
|
} else if (item.children && item.children.length) { |
|
|
|
|
const newChildren = []; |
|
|
|
|
// 递归调用,底层的真实数据会全部 push 进 newChildren 中
|
|
|
|
|
recursionFilterEmpty(item.children, newChildren); |
|
|
|
|
if (newChildren.length) { |
|
|
|
|
// 替换原始数据
|
|
|
|
|
item.children = newChildren; |
|
|
|
|
// 子项有真实的数据,就保留这一项
|
|
|
|
|
result.push(item); |
|
|
|
|
} // 如果没有这一项就会被删除
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function filterEmpty(listData) { |
|
|
|
|
const result = []; |
|
|
|
|
recursionFilterEmpty(listData, result); |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log(filterEmpty(treeData)) |
|
|
|
|
this.dataSource.data = filterEmpty(treeData) |
|
|
|
|
|
|
|
|
|
this.treeControl.expandAll() |
|
|
|
|
|
|
|
|
@ -1179,13 +1207,16 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//点击树节点
|
|
|
|
|
clickTreeNode(node){ |
|
|
|
|
|
|
|
|
|
if(this.canvasData.originalcompanyBuildingData.data[node.id]){ |
|
|
|
|
this.setAssetsProperty(this.canvasData.originalcompanyBuildingData.data[node.id]) |
|
|
|
|
}else if(this.canvasData.originaleveryStoreyData.data[node.id]){ |
|
|
|
|
this.setAssetsProperty(this.canvasData.originaleveryStoreyData.data[node.id]) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//canvas上的素材高亮
|
|
|
|
|
// console.log(node)
|
|
|
|
|
|
|
|
|
|
// canvas上的素材高亮
|
|
|
|
|
let iconHighLightArr:any = [] |
|
|
|
|
if(node.isTemplate){//如果是模板,则开始向下找
|
|
|
|
|
node.children.forEach(item => { |
|
|
|
@ -1200,6 +1231,7 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
}else{ |
|
|
|
|
iconHighLightArr.push(node.id) |
|
|
|
|
} |
|
|
|
|
// console.log(456,iconHighLightArr)
|
|
|
|
|
this.canvas.setHighlight(iconHighLightArr) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1276,6 +1308,8 @@ export class CollectionToolsComponent implements OnInit {
|
|
|
|
|
}else{ |
|
|
|
|
iconVisibleArr.push(node.id) |
|
|
|
|
} |
|
|
|
|
console.log(1,iconVisibleArr) |
|
|
|
|
console.log(2,node.isLook) |
|
|
|
|
this.canvas.setIconVisible(iconVisibleArr,!node.isLook) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|