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