livetest.vue 800 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="padding-lr">
  3. <iframe
  4. src="https://open.ys7.com/ezopen/h5/iframe?url=ezopen://open.ys7.com/C88252412/1.hd.live&autoplay=1&accessToken=at.atot0lhp50dudupv9u79eic62qyw89n1-3ra5hix23q-1tf487v-grmbjozxf"
  5. width="500"
  6. height="400"
  7. id="ysOpenDevice"
  8. allowfullscreen
  9. ></iframe>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. player: null
  17. };
  18. },
  19. computed: {},
  20. props: {},
  21. mounted() {
  22. // var _player = new EZUIKit.EZUIKitPlayer({
  23. // id: 'video-container', // 视频容器ID
  24. // accessToken: 'at.atot0lhp50dudupv9u79eic62qyw89n1-3ra5hix23q-1tf487v-grmbjozxf',
  25. // url: 'ezopen://open.ys7.com/116095156/1.hd.live'
  26. // });
  27. // this.player = _player;
  28. // _player.play();
  29. },
  30. methods: {}
  31. };
  32. </script>
  33. <style lang="scss"></style>