耀实惠小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
480 B

<template>
<view class="video-play flex-1 flex align-center justify-center">
<video :show-fullscreen-btn="false" class="video-play-box" :src="video_src" loop autoplay></video>
</view>
</template>
<script>
export default {
data () {
return {
video_src: ''
}
},
onLoad(options) {
this.video_src = options.picVo
},
}
</script>
<style lang="scss" scoped>
.video-play {
background-color: #000;
&-box {
width: 100%;
height: 100vh;
}
}
</style>