普兆健康管家前端代码仓库
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.

47 lines
866 B

  1. <template>
  2. <uv-popup
  3. ref="popup"
  4. :overlayOpacity="0.8"
  5. :customStyle="{
  6. backgroundColor: 'transparent',
  7. }"
  8. >
  9. <view>
  10. <video class="video"
  11. id="video"
  12. :src="videoUrl"
  13. autoplay
  14. play-btn-position="center"
  15. controls
  16. :show-fullscreen-btn="false"
  17. :show-center-play-btn="true"
  18. ></video>
  19. </view>
  20. </uv-popup>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. videoUrl: '',
  27. }
  28. },
  29. methods: {
  30. open(uvideoUrlrl) {
  31. this.videoUrl = videoUrl
  32. this.$refs.popup.open();
  33. },
  34. close() {
  35. this.$refs.popup.close();
  36. this.videoUrl = ''
  37. },
  38. },
  39. }
  40. </script>
  41. <style scoped lang="scss">
  42. .video {
  43. width: 100vw;
  44. height: calc(100vh - #{$navbar-height} - var(--status-bar-height) - 20rpx);
  45. }
  46. </style>