9 lines
666 B
Plaintext
9 lines
666 B
Plaintext
<view class="broadcast">
|
|
<view class="play-button-box" wx:if="{{!isPlay}}" bindtap="doPlay">
|
|
<view class="play-button"></view>
|
|
</view>
|
|
<live-player id="liveRecordVideo" bindtap="doStop" max-cache="20" src="{{liveRecordUrl}}/{{liveRecordSrc}}" bindstatechange="onPlayStateChange" mode="live" object-fit="contain" style="width: 100%; height: 400rpx;" wx:if="{{liveRecordSrc}}"/>
|
|
</view>
|
|
<view class="broadcast-list">
|
|
<view class="broadcast-title" bindtap="doChangeSrc" data-live-record-src="{{item.recordFilePath}}" wx:for="{{liveRecoreList}}" wx:for-index="index" wx:for-item="item" wx:key="liveRecoreList">{{index + 1}}.{{item.recordFileName}}</view>
|
|
</view> |