From 00bb8d914a5a48bae84f20bf1891b7462605a0dc Mon Sep 17 00:00:00 2001 From: leesam <leesam@leesam.cn> Date: 星期五, 15 三月 2024 09:42:25 +0800 Subject: [PATCH] [bugfix]修复云端录像查询时间转换错误的问题 --- web_src/src/components/dialog/devicePlayer.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/web_src/src/components/dialog/devicePlayer.vue b/web_src/src/components/dialog/devicePlayer.vue index 5239219..f6bd2b2 100755 --- a/web_src/src/components/dialog/devicePlayer.vue +++ b/web_src/src/components/dialog/devicePlayer.vue @@ -7,7 +7,7 @@ v-if="Object.keys(this.player).length > 1"> <el-tab-pane label="Jessibuca" name="jessibuca"> <jessibucaPlayer v-if="activePlayer === 'jessibuca'" ref="jessibuca" :visible.sync="showVideoDialog" - :videoUrl="videoUrl" :error="videoError" :message="videoError" height="100px" + :videoUrl="videoUrl" :error="videoError" :message="videoError" style="height: 515px" :hasAudio="hasAudio" fluent autoplay live></jessibucaPlayer> </el-tab-pane> <el-tab-pane label="WebRTC" name="webRTC"> -- Gitblit v1.8.0