index.wxml 813 B

1234567891011
  1. <!--pages/media/index.wxml-->
  2. <view class="media">
  3. <image src="../../assets/test.png" style="{{'width:' + top.width + 'px;height:' + top.height + 'px'}}" bindload="imageLoad" data-width="{{top.width}}" data-image="top" mode="aspectFit" />
  4. <van-tabs 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;text-align: center;padding-right: 5px;">
  8. <image wx:for="{{images}}" wx:key="index" bindtap="showImage" data-index="{{index}}" src="{{item.photo}}" style="{{'width:' + phone.width + 'px;height:160rpx;margin-left:5px'}}" mode="aspectFit" />
  9. </view>
  10. </view>