Parcourir la source

疏浚船舶视频修改

gr il y a 1 an
Parent
commit
90b789475f
2 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 2 2
      src/views/hdsj/cpns/BoatList.vue
  2. 1 0
      src/views/hdsj/cpns/VideoForBoat.vue

+ 2 - 2
src/views/hdsj/cpns/BoatList.vue

@@ -10,7 +10,7 @@
         <el-table-column label="吞吐量(方)" prop="TONNAGE" min-width="75" show-overflow-tooltip />
         <el-table-column label="视频监控" min-width="65">
           <template #default="scope">
-            <el-button type="primary" :disabled="scope.row.SHIPTYPE==='运泥船'" class="btn-check" @click="checkVideo(scope.row)">查看</el-button>
+            <el-button type="primary" :disabled="!scope.row?.VIDEOID" class="btn-check" @click="checkVideo(scope.row)">查看</el-button>
           </template>
         </el-table-column>
       </el-table>
@@ -111,7 +111,7 @@ export default {
   const currentVideoId = ref('')
 
   function checkVideo(row) {
-    currentVideoId.value = row['videoId']
+    currentVideoId.value = row['VIDEOID']
   }
 
   function handleCloseVideo() {

+ 1 - 0
src/views/hdsj/cpns/VideoForBoat.vue

@@ -72,6 +72,7 @@ function initPlayer() {
     height: 400,
   });
   window.player = player;
+  document.getElementById('video-container-loading-id-0').style.height = '100%'
 }
 
 const emit = defineEmits(['close'])