Authored by 陶雨

资源管理热门品类楼层样式修改

... ... @@ -217,7 +217,7 @@
<div style="clear:both;"></div>
<div style="width:150px;float:right;">
[[each module.contentData.data.imgs as item index]]
[[if index!=0 && index <= 6]]
[[if index>=module.contentData.data.imgs.length - 6]]
<img style="width:45px;height:90px;margin-left:5px;margin-bottom:10px;float:left;" src="[[item.src]]">
[[/if]]
[[/each]]
... ... @@ -227,9 +227,11 @@
</div>
<div style="width:100px;height:100%;float:right;">
[[if module.contentData.data.imgs.length]]
<img style="width:100px;height:100%;" src="[[module.contentData.data.imgs[0].src]]">
[[each module.contentData.data.imgs as item index]]
[[if index < module.contentData.data.imgs.length - 6]]
<img style="width:100px;height:100%;" src="[[module.contentData.data.imgs[index].src]]">
[[/if]]
[[/each]]
</div>
<div style="width:5px;height:100%;float:right;">
... ...