index.wxml 944 B

123456789101112
  1. <!--pages/media/index.wxml-->
  2. <view class="media">
  3. <image wx:if="{{cover}}" src="{{cover}}" style="{{'width:' + top.width + 'px;height:' + top.height + 'px'}}" bindload="imageLoad" data-width="{{top.width}}" data-image="top" mode="aspectFit" />
  4. <van-tabs ellipsis="{{false}}" sticky="{{true}}" color="#ffffff" title-inactive-color="#cccccc" title-active-color="#ffffff" active="{{ actMeet }}" bind:change="changeMeet">
  5. <van-tab wx:for="{{tabs}}" wx:key="index" title="{{item.agendaName}}" name="{{item.id + ''}}"></van-tab>
  6. </van-tabs>
  7. <view style="margin-top: 1em;padding-right: 5px;">
  8. <image wx:for="{{images}}" wx:key="index" bindtap="showImage" data-index="{{index}}" src="{{item.photo}}" bindload="imageLoad" data-image="phone" style="{{'width:' + phone.width + 'px;height:'+ phone.height +'px;margin-left:5px'}}" mode="aspectFit" />
  9. </view>
  10. <van-empty wx:if="{{!images || !images.length}}" description="" />
  11. </view>