23 lines
779 B
Plaintext
23 lines
779 B
Plaintext
<view class="page" style="padding: 20rpx;">
|
|
<view style="text-align:center" wx:if="{{count==0}}">暂无视频资源</view>
|
|
<block wx:if="{{results}}">
|
|
<view wx:for="{{results}}" wx:key="{{item.id}}" class="videoWrap">
|
|
<txv-video
|
|
wx:if="{{item.id}}"
|
|
vid="{{item.vid}}"
|
|
playerid="{{item.vid}}"
|
|
autoplay="{{false}}"
|
|
|
|
>
|
|
<view class='txv-video-slot' wx:if="{{item.name}}">
|
|
<span style="margin-left:6px">{{item.name}}</span>
|
|
</view>
|
|
</txv-video>
|
|
<view style="display: flex;justify-content: space-between;padding: 5rpx 15rpx;">
|
|
<view>{{item.name}}</view>
|
|
<view style="font-size: 26rpx;color: #aaaaaa;"> {{item.description}}</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|