index.wxml 1.3 KB

123456789101112131415161718192021
  1. <!--pages/stroke/index.wxml-->
  2. <view class="stroke">
  3. <van-tabs color="#ffffff" title-inactive-color="#cccccc" title-active-color="#ffffff" active="{{ active }}" bind:change="tabChange">
  4. <van-tab title="{{index}}" wx:for="{{meetingList}}" wx:key="index">
  5. <view class="meetingList">
  6. <view class="van-hairline--bottom" style="padding-bottom: 15rpx;" wx:for="{{item}}" wx:key="index">
  7. <view bindtap="toPage" data-url="{{'/pages/detail/stroke'}}" data-id="{{item.id}}">
  8. <text style="margin-left: -0.5em;float: left;">· </text>
  9. <view class="sh" wx:if="{{item.agendaName}}">
  10. {{item.agendaName}}
  11. </view>
  12. <view wx:if="{{item.localTime}}">时间:{{item.localTime}}</view>
  13. <view wx:if="{{item.agendaDesc}}" class="van-multi-ellipsis--l3">简介:{{item.agendaDesc}}</view>
  14. </view>
  15. <van-button wx:if="{{item.liveing}}" bingdtap="openChannels" data-channelsid="{{v.wxVideoUid}}" style="margin-top: 15rpx;" plain size="small">看直播</van-button>
  16. <!-- <image wx:if="{{item.agendaCover}}" style="width: 600rpx;height: 300rpx;margin-top: 15rpx;" mode="aspectFit" src="{{item.agendaCover}}" /> -->
  17. </view>
  18. </view>
  19. </van-tab>
  20. </van-tabs>
  21. </view>