代码调整

This commit is contained in:
joylink_cuiweidong 2020-10-30 15:36:39 +08:00
parent d58aa3b4f2
commit 12f08768da

View File

@ -385,7 +385,7 @@ function getRouteNameById(routeId) {
const route = routeList.find(route=>{
return route.code == routeId;
});
if (route) { return route.name; } else { return ''; }
if (route) { return route.turnBack ? route.name + '(Z)' : route.name; } else { return ''; }
}
function getStationNameById(stationId) {