xz_gangba/pages/broadcastDetail/broadcastDetail.wxml

22 lines
995 B
Plaintext
Raw Normal View History

2020-06-23 19:14:44 +08:00
<view class="broadcast">
2020-06-26 19:32:52 +08:00
<view class="page-section tc">
<video id="myVideo" src="{{liveDetail.liveDeviceRtmpUrl}}" binderror="videoErrorCallback" danmu-list="{{danmuList}}" enable-danmu show-center-play-btn='{{false}}' show-play-btn="{{true}}" controls autoplay="{{true}}" picture-in-picture-mode="{{['push', 'pop']}}" bindenterpictureinpicture='bindVideoEnterPictureInPicture' bindleavepictureinpicture='bindVideoLeavePictureInPicture'></video>
</view>
2020-06-23 19:14:44 +08:00
</view>
2020-06-26 19:32:52 +08:00
<view class="broadcast-title">{{liveDetail.livePlanName}}</view>
2020-06-23 19:14:44 +08:00
<view class="broadcast-time">
2020-06-26 19:32:52 +08:00
<view class="time">
<image src="../../images/time.png"></image>
<text>开始时间:</text>
{{liveDetail.livePlanStart}}
</view>
<view class="time">
<image src="../../images/time.png"></image>
<text>结束时间:</text>
{{liveDetail.livePlanEnd}}
</view>
2020-06-23 19:14:44 +08:00
</view>
<view class="broadcast-intro">
2020-06-26 19:32:52 +08:00
<view class="broadcast-intro-title">介绍</view>
<view class="intro-text">{{liveDetail.livePlanRecord}}</view>
2020-06-23 19:14:44 +08:00
</view>