|
|
|
@ -119,6 +119,9 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
let fenceType: JYZInfoMoudleType = this.getFenceType(type) |
|
|
|
|
this.isShowNature = false //隐藏属性栏
|
|
|
|
|
if (this.selectFence != type) { |
|
|
|
|
if (this.selectFence === 7) { //初始化 应急预案模块
|
|
|
|
|
this.initializePlan() |
|
|
|
|
} |
|
|
|
|
this.isShowChildComponent && this.leftDomain && type != 4 ? this.leftDomain.initComponent(type) : null; //手动初始化子组件
|
|
|
|
|
this.selectFence = type |
|
|
|
|
this.isShowChildComponent = true |
|
|
|
@ -127,6 +130,9 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.selectFence = -1 |
|
|
|
|
this.isShowChildComponent = false |
|
|
|
|
buildingWindow.changeJYZInfoModel(fenceType, false) |
|
|
|
|
if (type === 7) { //初始化 应急预案模块
|
|
|
|
|
this.initializePlan() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -319,18 +325,54 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
allMarkPlanData: AllMarkPlanData; //处置预案节点 数据
|
|
|
|
|
beforeEmergencyPlan: MarkPlanData = new MarkPlanData(-99, "请选择节点"); //当前选择 应急预案
|
|
|
|
|
beforePlanNode: MarkNodeData = new MarkNodeData(-99, "请选择节点"); //当前选择 预案节点
|
|
|
|
|
nzCurrent: number = -1; //当前选择 预案节点Index
|
|
|
|
|
isSuspend: boolean = false; //是否暂停 自动切换节点
|
|
|
|
|
timer: any; //定时器
|
|
|
|
|
|
|
|
|
|
//选中 子组件预案节点
|
|
|
|
|
//初始化 应急预案模块
|
|
|
|
|
initializePlan() { |
|
|
|
|
this.beforeEmergencyPlan = new MarkPlanData(-99, "请选择节点") |
|
|
|
|
this.beforePlanNode = new MarkNodeData(-99, "请选择节点") |
|
|
|
|
this.isSuspend = false //初始化暂停状态
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//选中 底部一级节点 开启自动播放
|
|
|
|
|
selectChildNode(item: MarkPlanData) { |
|
|
|
|
if (this.isShowChildComponent && this.leftDomain) { |
|
|
|
|
if (this.isShowChildComponent && this.leftDomain && this.beforeEmergencyPlan != item) { |
|
|
|
|
if (item.nodes.length) { |
|
|
|
|
this.leftDomain.selectNode(item, item.nodes[0]) |
|
|
|
|
this.nzCurrent = 0 |
|
|
|
|
this.beforeEmergencyPlan = item |
|
|
|
|
this.beforePlanNode = item.nodes[0] |
|
|
|
|
this.leftDomain.selectPlanId = item.id |
|
|
|
|
this.leftDomain.selectNodeId = item.nodes[0].id |
|
|
|
|
MarkWindow.instance.selectMarkNode(item.id, item.nodes[0].id) |
|
|
|
|
this.autoPlay() |
|
|
|
|
} else { |
|
|
|
|
this.message.info('暂无数据节点'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//自动播放-切换接点
|
|
|
|
|
autoPlay() { |
|
|
|
|
let time: number = MarkWindow.instance.currentMarkNodeInfo.getShowTime() |
|
|
|
|
console.log(time,777) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点
|
|
|
|
|
changePlanNode(event){ |
|
|
|
|
if (event === this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.nzCurrent = event |
|
|
|
|
this.beforePlanNode = this.beforeEmergencyPlan.nodes[event] |
|
|
|
|
this.leftDomain.selectPlanId = this.beforeEmergencyPlan.id |
|
|
|
|
this.leftDomain.selectNodeId = this.beforePlanNode.id |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id) |
|
|
|
|
console.log(event) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点 上一个
|
|
|
|
|
toLast() { |
|
|
|
|
|
|
|
|
|