fix(player): 修复分屏页面视频无法自动播放的问题
This commit is contained in:
parent
f78657473e
commit
a30ff222ec
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div ref="container" @dblclick="fullscreenSwich"
|
<div ref="container" @dblclick="fullscreenSwich"
|
||||||
style="width:100%;height:100%;background-color: #000000;margin:0 auto;">
|
style="width:100%;height:100%;background-color: #000000;margin:0 auto;position: relative;">
|
||||||
<div class="buttons-box" id="buttonsBox">
|
<div class="buttons-box" id="buttonsBox">
|
||||||
<div class="buttons-box-left">
|
<div class="buttons-box-left">
|
||||||
<i v-if="!playing" class="iconfont icon-play jessibuca-btn" @click="playBtnClick"></i>
|
<i v-if="!playing" class="iconfont icon-play jessibuca-btn" @click="playBtnClick"></i>
|
||||||
@ -60,8 +60,13 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
videoUrl(val, _) {
|
videoUrl: {
|
||||||
this.play(val);
|
handler(val, _) {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.play(val);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
immediate: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
Loading…
Reference in New Issue
Block a user