|
|
|
@ -69,14 +69,12 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ngAfterViewInit(): void { |
|
|
|
|
|
|
|
|
|
let simpleData: InsitutionDataSimple = new InsitutionDataSimple(); |
|
|
|
|
simpleData.id = 1; //来自选中的单位的信息 ,测试:1
|
|
|
|
|
simpleData.key = "ceshi"; //正式: id.tostring(),测试:"ceshi"
|
|
|
|
|
simpleData.name = "测试"; //来自选中的单位的信息 ,测试:"测试"
|
|
|
|
|
|
|
|
|
|
let has3dData = true;//是否有三维数据,来自选中单位的信息
|
|
|
|
|
|
|
|
|
|
let loginStatus = StatusManager.getStatus<LoginSatus>(LoginSatus); |
|
|
|
|
if (ModeManager.institutionDemoKey == ModeManager.c_demoKey_null) { //无指定测试单位,则为正式启动,根据当前单位key寻找
|
|
|
|
|
if (has3dData) { //如果已经有三维数据,直接进入
|
|
|
|
@ -355,7 +353,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.beforePlanNode = this.beforeEmergencyPlan.nodes[this.nzCurrent] |
|
|
|
|
this.leftDomain.selectPlanId = this.beforeEmergencyPlan.id |
|
|
|
|
this.leftDomain.selectNodeId = this.beforePlanNode.id |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id) |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id, false, true) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//选中 底部一级节点 开启自动播放
|
|
|
|
@ -364,6 +362,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
if (item.nodes.length) { |
|
|
|
|
let isTrue = confirm("即将开始播放节点") |
|
|
|
|
if (isTrue) { |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = 0 |
|
|
|
|
this.beforeEmergencyPlan = item |
|
|
|
|
this.publicToggleNode() |
|
|
|
@ -377,7 +376,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//自动播放-切换接点
|
|
|
|
|
autoPlay() { |
|
|
|
|
if (this.nzCurrent === this.beforeEmergencyPlan.nodes.length - 1) { |
|
|
|
|
if (this.nzCurrent >= this.beforeEmergencyPlan.nodes.length - 1) { |
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.isSuspend = false //初始化暂停状态
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
@ -385,11 +384,12 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
let time: number = this.beforePlanNode.getShowTime() |
|
|
|
|
console.log(`所需${time}s`) |
|
|
|
|
this.timer = window.setTimeout(()=>{ |
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
},time) |
|
|
|
|
},time * 1000) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点
|
|
|
|
@ -397,16 +397,22 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
if (event === this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = event |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点 上一个
|
|
|
|
|
toLast() { |
|
|
|
|
if (this.nzCurrent === 0) { |
|
|
|
|
if (this.beforeEmergencyPlan.id === -99 || this.beforePlanNode.id === -99) { |
|
|
|
|
this.message.info('请选择节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (this.nzCurrent <= 0) { |
|
|
|
|
this.message.info('目前已经是第一节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = this.nzCurrent - 1 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
@ -414,19 +420,28 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//切换预案节点 暂停
|
|
|
|
|
suspend(isSuspend: boolean) { |
|
|
|
|
if (this.beforeEmergencyPlan.id === -99 || this.beforePlanNode.id === -99) { |
|
|
|
|
this.message.info('请选择节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.isSuspend = isSuspend |
|
|
|
|
let msg: string = this.isSuspend? "目前已暂停" : "目前已开始播放" |
|
|
|
|
this.message.info(msg); |
|
|
|
|
if (this.isSuspend) { //暂停
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
|
} else { //开启
|
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id) |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id, false, true) |
|
|
|
|
this.autoPlay() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点 初始化
|
|
|
|
|
initialize() { |
|
|
|
|
if (this.beforeEmergencyPlan.id === -99 || this.beforePlanNode.id === -99) { |
|
|
|
|
this.message.info('请选择节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = 0 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
@ -434,10 +449,15 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//切换预案节点 下一个
|
|
|
|
|
toNext() { |
|
|
|
|
if (this.nzCurrent === this.beforeEmergencyPlan.nodes.length - 1) { |
|
|
|
|
if (this.beforeEmergencyPlan.id === -99 || this.beforePlanNode.id === -99) { |
|
|
|
|
this.message.info('请选择节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (this.nzCurrent >= this.beforeEmergencyPlan.nodes.length - 1) { |
|
|
|
|
this.message.info('目前已经是最后一个节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|