examtest_mp/pages/material/video.wxml

21 lines
556 B
Plaintext

<view style="text-align:center" wx:if="{{count==0}}">暂无视频资源</view>
<block wx:for="{{results}}" wx:key="unique">
<view class="weui-panel">
<txv-video
vid="{{item.vid}}"
playerid="txv1"
bindplay="play"
bindpause="pause"
bindended="pause"
data-index = "{{index}}"
data-id="{{item.id}}"
>
<view class='txv-video-slot' wx:if="{{item.showTitle}}">
<span style="margin-left:6px">{{item.name}}</span>
</view>
</txv-video>
<view style="color:darkblue;">
<span style="margin-left:6px">{{item.name}}</span>
</view>
</view>
</block>