Commit 9fd13c59 authored by 黄奎's avatar 黄奎

页面修改

parent d7600d60
...@@ -394,12 +394,14 @@ ...@@ -394,12 +394,14 @@
var rootRowspan = 0; //合团跨行 var rootRowspan = 0; //合团跨行
rootItem.PriceCommonList.forEach(subItem => { rootItem.PriceCommonList.forEach(subItem => {
var itemRowSpan = 0; //酒店跨行 var itemRowSpan = 0; //酒店跨行
subItem.PriceHotelResult.forEach(thirdItem => { if (subItem.PriceHotelResult && subItem.PriceHotelResult.length > 0) {
thirdItem.SubList.forEach(lastItem => { subItem.PriceHotelResult.forEach(thirdItem => {
rootRowspan++; thirdItem.SubList.forEach(lastItem => {
itemRowSpan++; rootRowspan++;
itemRowSpan++;
});
}); });
}); }
subItem.itemRowSpan = itemRowSpan; subItem.itemRowSpan = itemRowSpan;
}); });
rootItem.rootRowspan = rootRowspan; rootItem.rootRowspan = rootRowspan;
......
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