From aba106c0854f7f716f7eaaa66a2ba176ab7b2f85 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期五, 25 十月 2024 16:56:57 +0800 Subject: [PATCH] 视频小窗优化 --- src/books/civilAviationServices/view/components/index.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/books/civilAviationServices/view/components/index.vue b/src/books/civilAviationServices/view/components/index.vue index fc1081e..5b71a42 100644 --- a/src/books/civilAviationServices/view/components/index.vue +++ b/src/books/civilAviationServices/view/components/index.vue @@ -908,7 +908,7 @@ const bottomGap = playVudio.getBoundingClientRect().bottom; const topGap = playVudio.getBoundingClientRect().top; if (bottomGap < 0 || topGap > window.innerHeight) { - playVudio.requestPictureInPicture(); + if(playVudio.readyState) playVudio.requestPictureInPicture(); } } }, -- Gitblit v1.9.1