| <swiper  autoplay interval="5000" circular='true' previous-margin="40rpx" next-margin="40rpx" > | 
|     <block wx:for="{{banners}}" wx:key="ids"> | 
|         <swiper-item> | 
|             <navigator url='{{item.jumpPath}}'> | 
|                 <image mode="aspectFill" src="{{item.imgUrl}}" class="slide-image {{currentIndex == index ? 'active': ''}}"/> | 
|             </navigator> | 
|         </swiper-item> | 
|     </block> | 
| </swiper> | 
| <view class="dots"> | 
|     <block wx:for="{{imgUrls}}" wx:key="unique"> | 
|         <view class="dot{{index == currentIndex ? ' active' : ''}}"></view> | 
|     </block> | 
| </view> | 
|   | 
| <view class="nav_container">  | 
|     <block wx:for="{{iconUrls}}" wx:key="key"> | 
|         <view  class="icon_item"   bindtap="goAd"  data-jumpPath="{{item.jumpPath}}" data-title="{{item.title}}" >  | 
|                 <image mode="aspectFill" src="{{item.imgUrl}}"></image> | 
|                 <text class="icon_title">{{item.title}}</text> | 
|             | 
|         </view> | 
|     </block> | 
| </view> | 
| <view class="nav_container"> | 
| <block wx:for="{{indexAds}}" wx:key="key"> | 
|     <view  class="ads" data-id="{{item.attrId}}"> | 
|     <navigator url='{{item.jumpPath}}'> | 
|         <image mode="aspectFit"  mode='widthFix' src="{{item.imgUrl}}"></image> | 
|     </navigator> | 
|     </view> | 
| </block> | 
| </view> |