index.wxml 931 Bytes
<view class="container">

  <!-- 倒计时 -->
  <time-countdown floor-data="{{floorData}}" bind:tapBanner="tapBanner"></time-countdown>
  <view class="space-view20 middle30"></view>

  <!-- 购票单图 -->
  <block wx:for="{{floorData.tickets}}" wx:key="unique">
      <newSingleImage image-info="{{item}}" bind:jumpYohobuyGoodsDetail="jumpYohobuyGoodsDetail"></newSingleImage>
      <view class="space-view20" wx:if="{{index != floorData.tickets.length-1}}"></view>
  </block>

  <!-- 参展明星、参展品牌 -->
  <view class="space-view20 large40"></view>
  <twoImage floor-data="{{floorData}}" bind:jumpStarBrand="jumpStarBrand"></twoImage>
  <view class="space-view20 gray"></view>

  <!-- 资讯文章列表 -->
  <view class="news-title">展前资讯</view>
  <block wx:for="{{newsList.list}}" wx:key="{{index}}">
      <news-item data="{{item}}" bind:jumpNewsDetail="jumpNewsDetail"></news-item>
  </block>
  
</view>