From 2e7c9a7341670d78f5a1ce061ac225b02d6f606f Mon Sep 17 00:00:00 2001 From: 648540858 <648540858@qq.com> Date: 星期三, 07 二月 2024 20:30:37 +0800 Subject: [PATCH] Merge branch 'wvp-28181-2.0' into main-dev --- web_src/src/components/common/jessibuca.vue | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/web_src/src/components/common/jessibuca.vue b/web_src/src/components/common/jessibuca.vue index 5b48da4..3419bb5 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:518px; 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> @@ -46,7 +46,7 @@ }; }, props: ['videoUrl', 'error', 'hasAudio', 'height'], - mounted() { + created() { let paramUrl = decodeURIComponent(this.$route.params.url) this.$nextTick(() => { this.updatePlayerDomSize() @@ -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