From 115bd56702e2ce09b7a7c1e6bb5e93e2f6174cdf Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 16 Apr 2025 20:50:13 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/command-center-dashboard

---
 src/components/LiveVideo.vue |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/components/LiveVideo.vue b/src/components/LiveVideo.vue
index be0c852..9a2a256 100644
--- a/src/components/LiveVideo.vue
+++ b/src/components/LiveVideo.vue
@@ -1,7 +1,7 @@
 <!--视频直播-->
 <template>
   <div class="live-video" ref="JessibucaContainer">
-    <video ref="liveVideoRef" class="video-player" controls autoplay muted playsinline>
+    <video ref="liveVideoRef" class="video-player" :controls="props.controls" autoplay muted playsinline>
       Your browser is too old which doesn't support HTML5 video.
     </video>
   </div>
@@ -15,6 +15,10 @@
     type: String,
     default: '',
   },
+	controls:{
+		type:Boolean,
+		default: true
+	}
 });
 
 let liveVideoRef = ref(null);

--
Gitblit v1.9.3