<view class="VideoPlayer"> <view class="title" wx:if="{{datas.componentData['title']}}"> <text>{{datas.componentData['title']}}</text> </view> <view class="main"> <view class="isVideo" wx:if="{{datas.componentData['type']<3}}"> <video bindtap="playVideo" id="videoId{{indexs}}" src="{{datas.componentData['videoUrl']}}" show-center-play-btn="{{datas.componentData['nativeControl']}}" type="video/mp4" controls="{{datas.componentData['nativeControl']}}" loop="{{datas.componentData['loopPlay']}}" poster="{{datas.componentData['poster']}}" /> <view class="playerBtn" bindtap="playVideo" wx:if="{{!isPlay&&!datas.componentData['nativeControl']}}" > <image src="http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/06420e41-cd0b-4913-a1ef-9056ceebcc95.png" /> </view> </view> <!-- 代码片段展示 --> <view class="isCodeSnippets" wx:if="{{datas.componentData['type']==3&&datas.componentData['codeSnippet']!=''}}"> <rich-text nodes="{{datas.componentData['codeSnippet']}}"></rich-text> </view> </view> </view>