|
|
|
@ -19,6 +19,7 @@ export class LeftDomainComponent implements OnInit {
|
|
|
|
|
this.initComponent() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
editModel: boolean = true; //编辑/查看模式
|
|
|
|
|
beforeFence: number; //当前选中功能栏
|
|
|
|
|
FacilityList: FacilityInfoUIItem[] = []; //统计设备 list
|
|
|
|
|
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; |
|
|
|
@ -48,6 +49,7 @@ export class LeftDomainComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
this.FacilityList = list |
|
|
|
|
console.log(this.FacilityList,this.FacilityList[0].getPropertyData(),'筛选设备') |
|
|
|
|
if (this.beforeFence === 3) { //消防设施
|
|
|
|
|
this.handleTreeData(this.FacilityList) |
|
|
|
|
} |
|
|
|
@ -76,17 +78,19 @@ export class LeftDomainComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
//编辑模式
|
|
|
|
|
let isFind = this.treeData.find(item=>{ return item.key === 'XF_MHQ' }) |
|
|
|
|
if (!isFind) { |
|
|
|
|
let primaryNode = { title: '灭火器', key: 'XF_MHQ', selectable: false, } |
|
|
|
|
this.treeData.push(primaryNode) |
|
|
|
|
} |
|
|
|
|
for (let facility in FacilityType) { |
|
|
|
|
if (facility.slice(0,3) === "XF_" && !facility.includes('XF_MHQ')) { |
|
|
|
|
let isFind = this.treeData.find(item=>{ return item.key === facility }) |
|
|
|
|
if (!isFind) { |
|
|
|
|
let primaryNode = { title: ConfigManager.getFacilityTypeName(FacilityType[facility]), key: facility, selectable: false, } |
|
|
|
|
this.treeData.push(primaryNode) |
|
|
|
|
if (this.editModel) { |
|
|
|
|
let isFind = this.treeData.find(item=>{ return item.key === 'XF_MHQ' }) |
|
|
|
|
if (!isFind) { |
|
|
|
|
let primaryNode = { title: '灭火器', key: 'XF_MHQ', selectable: false, } |
|
|
|
|
this.treeData.push(primaryNode) |
|
|
|
|
} |
|
|
|
|
for (let facility in FacilityType) { |
|
|
|
|
if (facility.slice(0,3) === "XF_" && !facility.includes('XF_MHQ')) { |
|
|
|
|
let isFind = this.treeData.find(item=>{ return item.key === facility }) |
|
|
|
|
if (!isFind) { |
|
|
|
|
let primaryNode = { title: ConfigManager.getFacilityTypeName(FacilityType[facility]), key: facility, selectable: false, } |
|
|
|
|
this.treeData.push(primaryNode) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|