Commit b6842d93 authored by 黄奎's avatar 黄奎

页面修改

parent 9620c9c6
......@@ -1000,9 +1000,18 @@
let restaurantObj = travelFeatureTwo.DinnerInit(i, newVal.DayList) // 餐饮
let hotelObj = travelFeatureTwo.HotelInit(i, newVal.DayList) // 酒店
let viewSpotObj = travelFeatureTwo.ScenicInit(i, newVal.DayList) //景点
newRestaurantObj.list.push(...restaurantObj);
newHtelObj.list.push(...hotelObj);
newViewSpotObj.list.push(...viewSpotObj);
if(restaurantObj)
{
newRestaurantObj.list.push(...restaurantObj);
}
if(hotelObj)
{
newHtelObj.list.push(...hotelObj);
}
if(viewSpotObj)
{
newViewSpotObj.list.push(...viewSpotObj);
}
}
// 对比景点 newViewSpotObj this.viewSpotObj.list
let DalateView = travelFeatureTwo.getArrDifference(newViewSpotObj.list, this.viewSpotObj.list);
......
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