Commit 5ea04de5 authored by 黄奎's avatar 黄奎

页面修改

parent c2593bc7
......@@ -619,7 +619,15 @@ var tripUtils = {
if (dayIndex == currentDayIndex) {
if (dayItem.TrafficObj != null && dayItem.TrafficObj.SubTraffic != null && dayItem.TrafficObj.SubTraffic.length > 0) {
dayItem.TrafficObj.SubTraffic.forEach(subItem => {
cityIdStr += subItem.StartCityId + "," + subItem.ArrivalCityId + ","
if(subItem.StartCityId&&subItem.StartCityId!="0")
{
cityIdStr += subItem.StartCityId + ","
}
if(subItem.ArrivalCityId&&subItem.ArrivalCityId!="0")
{
cityIdStr += subItem.ArrivalCityId + ","
}
});
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment