63 lines
2.3 KiB
Plaintext
63 lines
2.3 KiB
Plaintext
<!--packageB/mycomponent/videoList.wxml-->
|
|
<view class="video-list">
|
|
<view class="ul" style="display: none">
|
|
<view class="li" data-item="{{item}}" catchtap="toVideo" wx:for="{{goodsData}}" wx:key="id">
|
|
<view class="video-img">
|
|
<image src="{{item.cover}}" id="{{item.id}}" mode='aspectFit' bindload="onImageLoad" />
|
|
</view>
|
|
<view class="p">{{item.title}}</view>
|
|
<view class="people" wx:if="{{item.member}}">
|
|
<view class="img">
|
|
<image src="{{item.member.avatar}}" mode='widthFix' />
|
|
</view>
|
|
<view class="span">{{item.member.nickname}}</view>
|
|
</view>
|
|
<view class="play">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/home_play@2x.png" mode='widthFix' />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="ul Mright">
|
|
<view class="li" data-item="{{item}}" catchtap="toVideo" wx:for="{{activitys1}}" wx:key="id">
|
|
<view class="video-img">
|
|
<image src="{{item.cover}}" id="{{item.id}}" mode='widthFix' />
|
|
</view>
|
|
<view class="p">{{item.title}}</view>
|
|
<view class="people" wx:if="{{item.member}}">
|
|
<view class="img">
|
|
<image src="{{item.member.avatar}}" mode='widthFix' />
|
|
</view>
|
|
<view class="span">{{item.member.nickname}}</view>
|
|
</view>
|
|
<view class="play">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/home_play@2x.png" mode='widthFix' />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="ul">
|
|
<view class="li" data-item="{{item}}" catchtap="toVideo" wx:for="{{activitys2}}" wx:key="id">
|
|
<view class="video-img">
|
|
<image src="{{item.cover}}" id="{{item.id}}" mode='widthFix' />
|
|
</view>
|
|
<view class="p">{{item.title}}</view>
|
|
<view class="people" wx:if="{{item.member}}">
|
|
<view class="img">
|
|
<image src="{{item.member.avatar}}" mode='widthFix' />
|
|
</view>
|
|
<view class="span">{{item.member.nickname}}</view>
|
|
</view>
|
|
<view class="play">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/home_play@2x.png" mode='widthFix' />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{goodsData.length <= 0}}" class="blank">
|
|
<image src='https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/blank.png' mode='widthFix' />
|
|
</view>
|
|
<view class="load" wx:if="{{!showLoading}}">
|
|
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/video-loading.gif" mode='widthFix'></image>
|
|
</view>
|
|
</view>
|