Files
AGuestSaas/pages/shortVideo/index.wxml
2020-12-30 10:15:22 +08:00

55 lines
2.4 KiB
Plaintext

<navigator url="plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=4">进入直播间</navigator>
<view style="margin-top: 10vh">
<view bindtap="onId">改变全局id</view>
</view>
<view class="videos-content" wx:if="{{1 == 2}}">
<swiperViode
wx:if="{{videoList.length > 0}}"
class="swiper-viode"
video-list="{{videoList}}"
autoPlay="{{playState}}"
fit="cover"
bind:play="videoPlay"
bind:swiperindex="swiperIndex"
>
</swiperViode>
<!-- 视频播放按钮 -->
<view class="videoLayer-play {{!isPlay ? 'show': ''}}" src="/static/icons/play_icon.png"></view>
<!-- 视频信息 -->
<view class="video-info">
<view class="video-user">@ {{videoList[videoIndex].company.name || "-"}}</view>
<view class="video-title">{{videoList[videoIndex].description || "-"}}</view>
</view>
<!-- 视频工具栏 -->
<view class="video-tool">
<view class="video-tool-item" catchtap="goCompany" data-id="{{videoList[videoIndex].company.company_id}}">
<image class="video-tool-cover" src="{{videoList[videoIndex].company.cover || ''}}" mode="aspectFill"></image>
</view>
<view class="video-tool-item" bindtap="binLike">
<image class="video-tool-icon" src="/static/icons/video_tool_00.png" mode="widthFix"></image>
<view class="video-tool-number">{{videoList[videoIndex].likes || "0"}}</view>
</view>
<view class="video-tool-item">
<image class="video-tool-icon" src="/static/icons/video_tool_01.png" mode="widthFix"></image>
<view class="video-tool-number">1000</view>
</view>
<view class="video-tool-item">
<image class="video-tool-icon" src="/static/icons/video_tool_02.png" mode="widthFix"></image>
<view class="video-tool-number">{{videoList[videoIndex].shares || "0"}}</view>
</view>
<view class="video-tool-item">
<view class="video-tool-vinyl {{playState ? 'rotate': ''}}">
<image class="video-tool-vinyl-back" src="/static/images/vinyl_back.png" mode="widthFix"></image>
<image class="video-tool-vinyl-cover" src="{{videoList[videoIndex].company.cover || ''}}" mode="aspectFill"></image>
</view>
</view>
</view>
</view>
<storeTabBar pages-url="pages/shortVideo/index"></storeTabBar>