<view class="page">
|
<view class="page-header">
|
<video
|
class="video"
|
id="myVideo"
|
src="{{video.url}}"
|
binderror="videoErrorCallback"
|
show-center-play-btn="{{false}}"
|
show-play-btn="{{true}}"
|
controls
|
autoplay
|
custom-cache="{{false}}"
|
poster="{{video.lrPicurl}}"
|
picture-in-picture-mode="{{['push', 'pop']}}"
|
bindenterpictureinpicture="bindVideoEnterPictureInPicture"
|
bindleavepictureinpicture="bindVideoLeavePictureInPicture"
|
></video>
|
</view>
|
<view class="page-container">
|
<view class="video-content">
|
<view class="video-content-title"> {{video.title}} </view>
|
<view class="video-content-tag">
|
<view class="video-content-tag__item">
|
<t-icon name="time" size="30rpx" />
|
<text>{{video.time}}</text>
|
</view>
|
<view class="video-content-tag__item">
|
<t-icon name="browse" size="36rpx" />
|
<text>{{video.browse}}</text>
|
</view>
|
</view>
|
<view class="video-content-desc"> {{video.desc}} </view>
|
</view>
|
<t-divider />
|
</view>
|
<view class="page-footer">
|
<t-empty-page
|
description="无更多视频"
|
></t-empty-page>
|
</view>
|
</view>
|