From 8874c90db2c238fa4c55df491675fe7fec9d93b2 Mon Sep 17 00:00:00 2001 From: fine <54142345+criver31@users.noreply.github.com> Date: 星期二, 09 一月 2024 11:45:30 +0800 Subject: [PATCH] Merge branch '648540858:wvp-28181-2.0' into wvp-28181-2.0 --- web_src/src/components/common/jessibuca.vue | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/web_src/src/components/common/jessibuca.vue b/web_src/src/components/common/jessibuca.vue index 5b48da4..c3d3e67 100755 --- a/web_src/src/components/common/jessibuca.vue +++ b/web_src/src/components/common/jessibuca.vue @@ -1,6 +1,6 @@ <template> <div ref="container" @dblclick="fullscreenSwich" - style="width:100%;height:100%;background-color: #000000;margin:0 auto;position: relative;"> + style="width:100%;height:100%;min-height: 200px;background-color: #000000;margin:0 auto;position: relative;"> <div class="buttons-box" id="buttonsBox"> <div class="buttons-box-left"> <i v-if="!playing" class="iconfont icon-play jessibuca-btn" @click="playBtnClick"></i> @@ -80,9 +80,10 @@ height = clientHeight width = (16 / 9) * height } - - dom.style.width = width + 'px'; - dom.style.height = height + "px"; + if (width > 0 && height > 0) { + dom.style.width = width + 'px'; + dom.style.height = height + "px"; + } }, create() { let options = { -- Gitblit v1.8.0