@ -5,6 +5,9 @@ import { PlanComponent } from '../plan/plan.component';
import { FacilityInfoUIItem } from "../../babylon/view/facilityinfoinscene-window/facilityinfo-ui-item" ;
import { ConfigManager } from 'src/app/babylon/controller/config-manager' ;
import { FacilityType } from 'src/app/babylon/model/data/model-data/model-data-facility' ;
import { EventManager } from 'src/app/babylon/controller/event-manager/event-manager' ;
import { Event_GetAllMarkPlanData } from 'src/app/babylon/controller/event-manager/events/event-get-markplandata-success' ;
import { AllMarkPlanData } from 'src/app/babylon/model/data/mark/mark-plan-data' ;
@Component ( {
selector : 'app-left-domain' ,
@ -23,8 +26,6 @@ export class LeftDomainComponent implements OnInit {
beforeFence : number ; //当前选中功能栏
FacilityList : FacilityInfoUIItem [ ] = [ ] ; //统计设备 list
selectFacilityId : string = null ; //选中设备 ID
@ViewChild ( 'nzTreeComponent' , { static : false } ) nzTreeComponent ! : NzTreeComponent ;
treeData : NzTreeNodeOptions [ ] = [ ] ; //tree data
//初始化组件
initComponent ( type ? : number ) {
@ -39,6 +40,13 @@ export class LeftDomainComponent implements OnInit {
//处理 设备data
handleFacility() {
if ( this . beforeFence === 7 ) { //应急预案
EventManager . addListener ( Event_GetAllMarkPlanData , ( data : Event_GetAllMarkPlanData ) = > {
this . allMarkPlanData = data . data
console . log ( this . allMarkPlanData , 777 )
} )
return
}
let list : FacilityInfoUIItem [ ] = [ ]
FacilityInfoInSceneWindow . instance . facilityInfoUIItemes . forEach ( item = > {
if ( this . beforeFence === 1 ) { //加油机
@ -67,6 +75,9 @@ export class LeftDomainComponent implements OnInit {
}
}
@ViewChild ( 'nzTreeComponent' , { static : false } ) nzTreeComponent ! : NzTreeComponent ;
treeData : NzTreeNodeOptions [ ] = [ ] ; //tree data
//处理 treeData
handleTreeData ( list : FacilityInfoUIItem [ ] ) {
this . treeData = [ ]
@ -137,6 +148,10 @@ export class LeftDomainComponent implements OnInit {
}
}
allMarkPlanData : AllMarkPlanData ; //处置预案节点数据
selectPlanId : number ;
selectNodeId : number ;
//编辑信息
editInfo() {