西安二号线 列车在站台停车时,站台框也显示为绿色
This commit is contained in:
parent
812a7534b7
commit
77a8fd7c41
@ -124,7 +124,6 @@ deviceState[deviceType.StationStand] = {
|
|||||||
assignSkip: 0, // 是否指定跳停
|
assignSkip: 0, // 是否指定跳停
|
||||||
runLevelTime: 0, // 区间运行时间 自动为 0
|
runLevelTime: 0, // 区间运行时间 自动为 0
|
||||||
parkingTime: 0, // 站台停车时间 自动为0
|
parkingTime: 0, // 站台停车时间 自动为0
|
||||||
doorOpen:0, // 车门开启 自动为0 (西安二号线样式 暂时后端没加该字段)
|
|
||||||
|
|
||||||
// /** 折返策略*/
|
// /** 折返策略*/
|
||||||
// reentryStrategy: {
|
// reentryStrategy: {
|
||||||
|
@ -24,8 +24,7 @@ class Status {
|
|||||||
assignSkip: device.assignSkip, // 是否指定跳停
|
assignSkip: device.assignSkip, // 是否指定跳停
|
||||||
runLevelTime: device.runLevelTime, // 区间运行时间 自动为 0
|
runLevelTime: device.runLevelTime, // 区间运行时间 自动为 0
|
||||||
parkingTime: device.parkingTime, // 站台停车时间 自动为0
|
parkingTime: device.parkingTime, // 站台停车时间 自动为0
|
||||||
fault: device.fault, /** 非故障*/
|
fault: device.fault /** 非故障*/
|
||||||
doorOpen:device.doorOpen /** 车门开启 自动为0 (西安二号线样式 暂时后端没加该字段)*/
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
handleSection(device) {
|
handleSection(device) {
|
||||||
|
@ -492,7 +492,7 @@ class StationStand extends Group {
|
|||||||
model.trainParking && this.stop(); /** 列车停站*/
|
model.trainParking && this.stop(); /** 列车停站*/
|
||||||
model.emergencyClosed && this.emergentClose(); /** 站台紧急关闭*/
|
model.emergencyClosed && this.emergentClose(); /** 站台紧急关闭*/
|
||||||
|
|
||||||
model.doorOpen && this.doorOpen(); /** 车门开启 (西安二号线样式)*/
|
model.trainParking && this.doorOpen(); /** 车门开启 (西安二号线样式)*/
|
||||||
|
|
||||||
if (Number(model.parkingTime) > 0) {
|
if (Number(model.parkingTime) > 0) {
|
||||||
this.setManuallyArmisticeTime(model.parkingTime); // 设置站台停车时间
|
this.setManuallyArmisticeTime(model.parkingTime); // 设置站台停车时间
|
||||||
|
Loading…
Reference in New Issue
Block a user