<video @ended="over(item.id)" :src="item.video_url" :poster="item.video_url+'?vframe/jpg/offset/1'" style="object-fit:fill" webkit-playsinline="true" x-webkit-airplay="true" playsinline="true" x5-video-player-type="h5" x5-video-orientation="h5" x5-video-player-fullscreen="true"preload="auto"></video>
设置一下poster属性
里面的值就是你的视频链接加上'?vframe/jpg/offset/1' 这一段代码就行了
比方说你的视频链接是 http:www.xxx.com/video/xxx.mp4
那么你就在video标签里面加上 poster='http:www.xxx.com/video/xxx.mp4?vframe/jpg/offset/1' 就可以了