riku
2024-11-07 5036880fc037e5d112206b93a729f60be12bf8ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<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>