showVideoList.wxml 491 B

1234567891011121314151617
  1. <view class="container">
  2. <!-- 顶部切换标题 -->
  3. <switchTab arr="{{switchTitle}}" bind:changeIndex="selectIndex"></switchTab>
  4. <!-- end -->
  5. <!-- 视频列表 -->
  6. <view class="show-view" style="{{list.length > 0 ? 'padding: 25rpx' : ''}}">
  7. <showList list="{{list}}" bind:callThumbsUp="doThumbsUp"></showList>
  8. </view>
  9. <!-- end -->
  10. <view class="uploadTap" bindtap="uploadTap" wx:if="{{personType=='0'}}">发布</view>
  11. <view class="loading">{{loading}}</view>
  12. </view>