耀实惠小程序
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.

27 lines
480 B

  1. <template>
  2. <view class="video-play flex-1 flex align-center justify-center">
  3. <video :show-fullscreen-btn="false" class="video-play-box" :src="video_src" loop autoplay></video>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {
  10. video_src: ''
  11. }
  12. },
  13. onLoad(options) {
  14. this.video_src = options.picVo
  15. },
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .video-play {
  20. background-color: #000;
  21. &-box {
  22. width: 100%;
  23. height: 100vh;
  24. }
  25. }
  26. </style>