Compare commits
No commits in common. "a7da8b013e4f767f35051d668c76b308d8014409" and "a4259cf2d9a4ce63081b7c6b05380fb2ddbc6a28" have entirely different histories.
a7da8b013e
...
a4259cf2d9
|
@ -505,9 +505,6 @@
|
|||
}"
|
||||
>
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="isXiHaiAn && column.dataIndex === 'status'">
|
||||
<span>{{ statusText[record.status] || '' }}</span>
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'operation'">
|
||||
<a
|
||||
v-if="isXiHaiAn"
|
||||
|
@ -553,7 +550,6 @@
|
|||
@change="handleTableChange"
|
||||
>
|
||||
<template #bodyCell="{ column, record }">
|
||||
|
||||
<template v-if="column.dataIndex === 'operation'">
|
||||
<a-button
|
||||
@click="goToApply(record)"
|
||||
|
@ -1027,10 +1023,8 @@
|
|||
const rowClickData = ref(null)
|
||||
// 打开视频预览
|
||||
const openVideo = (id, item) => {
|
||||
// 单个预览
|
||||
if (item && item.status != 1) {
|
||||
rowClickData.value = item;
|
||||
return message.warning('当前设备离线!')
|
||||
if (item) {
|
||||
rowClickData.value = item
|
||||
}
|
||||
console.log('打开视频', id)
|
||||
const param = {
|
||||
|
@ -1909,10 +1903,6 @@
|
|||
// 表格
|
||||
const dataSource = ref([])
|
||||
const dataSource2 = ref([])
|
||||
const statusText = ref({
|
||||
0: '离线',
|
||||
1: '在线',
|
||||
})
|
||||
const columns = ref([
|
||||
{
|
||||
title: '名称',
|
||||
|
@ -1925,12 +1915,6 @@
|
|||
width: '60%',
|
||||
key: 'nodeName',
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
dataIndex: 'status',
|
||||
width: '10%',
|
||||
key: 'status',
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'operation',
|
||||
|
|
Loading…
Reference in New Issue