12 lines
633 B
Plaintext
12 lines
633 B
Plaintext
<!--packageD/playBack/playBack.wxml-->
|
|
<view class="my-video" style="{{'height:'+ heightauto +';'}} {{'width:'+ widthauto +';'}}">
|
|
<video id="myvideo" poster="{{showCover}}" style="{{'height:'+ heightauto +';'}} {{'width:'+ widthauto +';'}}"
|
|
src="{{showVideo}}" loop="{{true}}" controls="{{true}}" object-fit="{{'fill'}}"></video>
|
|
<view class="title">{{showName}}</view>
|
|
<view class="text-box">
|
|
<view class="{{index == curr ?'choose number':'number'}}" wx:for="{{liveList}}" wx:for-index="index" wx:key="index" data-index="{{index}}" catchtap="chooseItem">
|
|
第{{index+1}}部分
|
|
</view>
|
|
</view>
|
|
</view>
|