|
@@ -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() {
|