| | |
| | | <u-swipe-action style="width: 100%;" :show="item.show" :index="index" :key="item.id" |
| | | @click="deleteVideoView(item.id)" @open="open" :options="options"> |
| | | <view style="display: flex;" @click="goToVideoPlay(item, index)"> |
| | | <image class="video-cover" :src="item.coverUrl" mode="aspectFill"></image> |
| | | <video |
| | | class="video-cover" |
| | | :src="item.videoUrl" |
| | | controls="false" |
| | | :autoplay="false" |
| | | :loop="false" |
| | | :show-center-play-btn="false" |
| | | :show-play-btn="false" |
| | | :show-fullscreen-btn="false" |
| | | allow-fullscreen="false" |
| | | :disableProgressGesture="true" |
| | | :enablePlayGesture="false" |
| | | :show-background-playback-button="false" |
| | | ></video> |
| | | <view class="video-info"> |
| | | <view class="video-title">{{item.title}}</view> |
| | | <view class="video-author">{{item.authorName}}</view> |