修复视频播放返回按钮显示隐藏问题
This commit is contained in:
parent
acf20d8f71
commit
8622f3c4de
|
|
@ -199,7 +199,7 @@
|
|||
// #ifdef H5
|
||||
emits('controlstoggles', {
|
||||
detail: {
|
||||
show: true
|
||||
show: false
|
||||
}
|
||||
})
|
||||
// #endif
|
||||
|
|
@ -211,7 +211,7 @@
|
|||
// #ifdef H5
|
||||
emits('controlstoggles', {
|
||||
detail: {
|
||||
show: false
|
||||
show: true
|
||||
}
|
||||
})
|
||||
// #endif
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@
|
|||
// #ifdef APP
|
||||
control.showControls = false
|
||||
// #endif
|
||||
|
||||
|
||||
const customStyle = computed(() => {
|
||||
// #ifdef H5
|
||||
return {
|
||||
|
|
@ -241,6 +241,7 @@
|
|||
})
|
||||
|
||||
function controlstoggles(e) {
|
||||
console.log(e);
|
||||
control.showControls = e.detail.show
|
||||
control.showBack = control.showControls
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue