From 2c2bc8614c8ea0ce386369eb4924da1e6aa052d1 Mon Sep 17 00:00:00 2001
From: husq <931347610@qq.com>
Date: Wed, 27 Sep 2023 09:35:57 +0800
Subject: [PATCH] 添加环境配置区分

---
 src/components/livestream-others.vue |   36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/src/components/livestream-others.vue b/src/components/livestream-others.vue
index 16b0bb3..14a43fb 100644
--- a/src/components/livestream-others.vue
+++ b/src/components/livestream-others.vue
@@ -7,7 +7,7 @@
       controls
       class="mt20"
     ></video>
-    <p class="fz24">Live streaming source selection</p>
+    <p class="fz24">直播源选择</p>
 
     <div class="flex-row flex-justify-center flex-align-center mt10">
       <template v-if="liveState && isDockLive">
@@ -19,7 +19,7 @@
       <template v-else>
       <a-select
         style="width: 150px"
-        placeholder="Select Live Type"
+        placeholder="选择直播流类型"
         @select="onLiveTypeSelect"
         v-model:value="livetypeSelected"
       >
@@ -34,7 +34,7 @@
       <a-select
         class="ml10"
         style="width:150px"
-        placeholder="Select Drone"
+        placeholder="选择设备"
         v-model:value="droneSelected"
       >
         <a-select-option
@@ -48,7 +48,7 @@
       <a-select
         class="ml10"
         style="width:150px"
-        placeholder="Select Camera"
+        placeholder="选择相机"
         v-model:value="cameraSelected"
       >
         <a-select-option
@@ -77,7 +77,7 @@
       <a-select
         class="ml10"
         style="width:150px"
-        placeholder="Select Clarity"
+        placeholder="选择画质"
         @select="onClaritySelect"
         v-model:value="claritySelected"
       >
@@ -91,23 +91,23 @@
     </div>
     <div class="mt20">
       <p class="fz10" v-if="livetypeSelected == 2">
-        Please use VLC media player to play the RTSP livestream !!!
+        请使用VLC媒体播放器播放RTSP直播!!!
       </p>
       <p class="fz10" v-if="livetypeSelected == 2">
-        RTSP Parameter:{{ rtspData }}
+        RTSP参数:{{ rtspData }}
       </p>
     </div>
     <div class="mt10 flex-row flex-justify-center flex-align-center">
-      <a-button v-if="liveState && isDockLive" type="primary" large @click="onSwitch">Switch Lens</a-button>
-      <a-button v-else type="primary" large @click="onStart">Play</a-button>
+      <a-button v-if="liveState && isDockLive" type="primary" large @click="onSwitch">切换镜头</a-button>
+      <a-button v-else type="primary" large @click="onStart">播放</a-button>
       <a-button class="ml20" type="primary" large @click="onStop"
-        >Stop</a-button
+        >暂停</a-button
       >
       <a-button class="ml20" type="primary" large @click="onUpdateQuality"
-        >Update Clarity</a-button
+        >更新画质</a-button
       >
       <a-button v-if="!liveState || !isDockLive" class="ml20" type="primary" large @click="onRefresh"
-        >Refresh Live Capacity</a-button
+        >刷新</a-button
       >
     </div>
   </div>
@@ -145,23 +145,23 @@
 const clarityList: SelectOption[] = [
   {
     value: 0,
-    label: 'Adaptive'
+    label: '自适应'
   },
   {
     value: 1,
-    label: 'Smooth'
+    label: '正常'
   },
   {
     value: 2,
-    label: 'Standard'
+    label: '标准'
   },
   {
     value: 3,
-    label: 'HD'
+    label: '高清'
   },
   {
     value: 4,
-    label: 'Super Clear'
+    label: '超清'
   }
 ]
 
@@ -388,7 +388,7 @@
   videoSelected.value = firstVideo.value
   lensList.value = firstVideo.more
   lensSelected.value = firstVideo.label
-  isDockLive.value = lensList.value.length > 0
+  isDockLive.value = lensList.value?.length > 0
 }
 const onVideoSelect = (val: SelectOption) => {
   videoSelected.value = val.value

--
Gitblit v1.9.3