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