|
@@ -122,6 +122,14 @@
|
|
|
<template #default="scope">
|
|
|
<el-button
|
|
|
link
|
|
|
+ type="success"
|
|
|
+ @click="openViewForm(scope.row.id)"
|
|
|
+ v-hasPermi="['safe:camera:query']"
|
|
|
+ >
|
|
|
+ 预览
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ link
|
|
|
type="primary"
|
|
|
@click="openForm('update', scope.row.id)"
|
|
|
v-hasPermi="['safe:camera:update']"
|
|
@@ -150,6 +158,7 @@
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
|
<CameraForm ref="formRef" @success="getList" />
|
|
|
+ <CameraViewForm ref="viewFormRef"/>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
@@ -158,6 +167,7 @@ import download from '@/utils/download'
|
|
|
import { CameraApi, CameraVO } from '@/api/safe/camera'
|
|
|
import { ServerApi } from '@/api/safe/server'
|
|
|
import CameraForm from './CameraForm.vue'
|
|
|
+import CameraViewForm from './CameraViewForm.vue'
|
|
|
|
|
|
/** 安防前端设备 列表 */
|
|
|
defineOptions({ name: 'SafeCamera' })
|
|
@@ -212,6 +222,12 @@ const openForm = (type: string, id?: number) => {
|
|
|
formRef.value.open(type, id)
|
|
|
}
|
|
|
|
|
|
+/** 预览操作 */
|
|
|
+const viewFormRef = ref()
|
|
|
+const openViewForm = (id?: number) => {
|
|
|
+ viewFormRef.value.open(id)
|
|
|
+}
|
|
|
+
|
|
|
/** 删除按钮操作 */
|
|
|
const handleDelete = async (id: number) => {
|
|
|
try {
|