| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="padding-lr">
- <iframe
- 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"
- width="500"
- height="400"
- id="ysOpenDevice"
- allowfullscreen
- ></iframe>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- player: null
- };
- },
- computed: {},
- props: {},
- mounted() {
- // var _player = new EZUIKit.EZUIKitPlayer({
- // id: 'video-container', // 视频容器ID
- // accessToken: 'at.atot0lhp50dudupv9u79eic62qyw89n1-3ra5hix23q-1tf487v-grmbjozxf',
- // url: 'ezopen://open.ys7.com/116095156/1.hd.live'
- // });
- // this.player = _player;
- // _player.play();
- },
- methods: {}
- };
- </script>
- <style lang="scss"></style>
|