| <image mode="aspectFill" | 
|        src="{{banner.imgUrl}}"></image> | 
| <scroll-view class="scroll"> | 
|   | 
|    <view wx:for="{{productList}}"  class="group" data-id="{{item.id}}"  bindtap="intoDetail"> | 
|         <image mode="aspectFit" | 
|                src="{{item.goodsPic}}"></image> | 
|   | 
|         <view class="djs"> | 
|             <text class="js" >距结束</text> | 
|             <text class="time">{{item.djs.day}}:{{item.djs.hour}}:{{item.djs.minute}}:{{item.djs.second}}</text> | 
|         </view> | 
|         <view class="footBox"> | 
|             <view class="title" >{{item.goodsName}}</view> | 
|             <view class="description" >{{item.goodsIntro}}</view> | 
|              | 
|             <view class="price_box" >  | 
|               <text> | 
|                 <text class="price">¥{{item.nowPrice}}</text> | 
|                 <text class="price_line">¥{{item.prePrice}}</text> | 
|               </text> | 
|                 <text bindtap="intoDetail" data-id="{{item.id}}" class="group_but">去拼团</text> | 
|             </view> | 
|         </view> | 
|     </view> | 
|   | 
|   | 
| </scroll-view> | 
|   <view wx:if="{{productList.length==0}}" class="nodata">暂无数据</view> | 
|      | 
|   <view wx:if="{{productList.length!=0&&isEnd}}" class="nodata " >没有更多了</view> |