调整流程

This commit is contained in:
zyy 2021-05-19 10:22:39 +08:00
parent 6ba7b730a5
commit c281a51424

View File

@ -1233,9 +1233,9 @@ export default {
stationAllJumpTrain() {
const list = this.stationStandList.filter(el => el.right == this.selectedObj.right);
const index = list.findIndex(el => el.code == this.selectedObj.code);
let lists = list.slice(0, index);
let lists = list.slice(0, index + 1);
if (this.selectedObj.right) {
lists = list.slice(index + 1, 9999);
lists = list.slice(index, 9999);
}
const row = {};
row.operation = OperationEvent.StationStand.setBulkBuckleTrain.menuButton.operation;