|
|
|
@ -354,8 +354,8 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
publicToggleNode() { |
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
this.beforePlanNode = this.beforeEmergencyPlan.nodes[this.nzCurrent] |
|
|
|
|
this.leftDomain.selectPlanId = this.beforeEmergencyPlan.id |
|
|
|
|
this.leftDomain.selectNodeId = this.beforePlanNode.id |
|
|
|
|
this.isShowChildComponent && this.leftDomain? this.leftDomain.selectPlanId = this.beforeEmergencyPlan.id : null |
|
|
|
|
this.isShowChildComponent && this.leftDomain? this.leftDomain.selectNodeId = this.beforePlanNode.id : null |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id, false, true) |
|
|
|
|
this.beforePlanNode = MarkWindow.instance.currentMarkNodeInfo.nodeData |
|
|
|
|
this.updateProgress() //更新进度条
|
|
|
|
@ -421,7 +421,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.isSuspend = true //暂停
|
|
|
|
|
this.nzCurrent = event |
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : null }) |
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : this.progressList[index] = 100 }) |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -440,7 +440,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = this.nzCurrent - 1 |
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : null }) |
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : this.progressList[index] = 100 }) |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -493,7 +493,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : null }) |
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : this.progressList[index] = 100 }) |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|