init
This commit is contained in:
203
rtsp-vue/src/views/video/device/component/cusPlayer.vue
Normal file
203
rtsp-vue/src/views/video/device/component/cusPlayer.vue
Normal file
@@ -0,0 +1,203 @@
|
||||
<template>
|
||||
<div style="position: absolute;height: 100%;width: 100%;display: flex;align-items: center;justify-content: center;">
|
||||
<div class="video" v-show="isPlay" :id="elId"></div>
|
||||
<div v-show="!isPlay" style="color: #08979C;font-size: 25px;">暂无视频源</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import FlvJsPlayer from 'xgplayer-flv.js';
|
||||
import Player from 'xgplayer';
|
||||
import { v4 } from 'uuid';
|
||||
export default {
|
||||
name: 'CusPlayer',
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
isPlay: false,
|
||||
player: null,
|
||||
elId: ''
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.elId = v4(); // 避免key重复
|
||||
},
|
||||
mounted() {
|
||||
var that = this;
|
||||
document.addEventListener('visibilitychange', function() {
|
||||
// console.log(document.visibilityState);
|
||||
// console.log(document.hidden);
|
||||
if (document.hidden) {
|
||||
console.log("页面隐藏")
|
||||
}
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
createPlayer(url, hasCloseBtn, index) {
|
||||
if (!url) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.player) {
|
||||
this.changeVideo(url);
|
||||
return;
|
||||
}
|
||||
|
||||
this.isPlay = true;
|
||||
this.player = new FlvJsPlayer({
|
||||
id: this.elId,
|
||||
url: url,
|
||||
// fitVideoSize: 'auto',
|
||||
fluid: true,
|
||||
autoplay: true,
|
||||
isLive: true,
|
||||
playsinline: false,
|
||||
screenShot: true,
|
||||
whitelist: [''],
|
||||
ignores: ['time'],
|
||||
closeVideoClick: true,
|
||||
// errorTips: '<span class="app-error">无视频源</span>',
|
||||
customConfig: {
|
||||
isClickPlayBack: false
|
||||
},
|
||||
flvOptionalConfig: {
|
||||
enableWorker: true,
|
||||
enableStashBuffer: false, //关闭缓存
|
||||
stashInitialSize: 2048, //缓存大小2m
|
||||
lazyLoad: false,
|
||||
lazyLoadMaxDuration: 40 * 60,
|
||||
autoCleanupSourceBuffer: true,
|
||||
autoCleanupMaxBackwardDuration: 35 * 60,
|
||||
autoCleanupMinBackwardDuration: 30 * 60
|
||||
} //flv.js可选配置项 [flv.js配置](https://github.com/bilibili/flv.js/blob/master/docs/api.md#config)
|
||||
});
|
||||
|
||||
// 自定义播放器按钮
|
||||
// let divStr =
|
||||
// '<i class="btn-hover el-icon-camera button-screen-shot" style="font-size: 23px;margin-right: 10px;pointer-events: auto;"></i>' +
|
||||
// '<i class="btn-hover el-icon-s-tools button-set" style="font-size: 23px;margin-right: 10px;pointer-events: auto;"></i>' +
|
||||
// '<i class="btn-hover el-icon-video-camera-solid button-history" style="font-size: 23px;margin-right: 10px;pointer-events: auto;"></i>';
|
||||
|
||||
let divStr = '<i class="btn-hover el-icon-d-arrow-left button-playback" style="font-size: 23px;pointer-events: auto;"></i>';
|
||||
|
||||
let divClose = '<i @click="closePlayer" class="btn-hover el-icon-close app-close-btn-c"></i>';
|
||||
|
||||
let util = Player.util;
|
||||
// let customBtn = util.createDom('div', divStr, {}, 'flex align-center justify-center app-player-button'); //'div', divStr, {}, 'class'
|
||||
let customBtn = util.createDom(
|
||||
'div',
|
||||
divStr,
|
||||
{ style: 'width: 40px;heigth:40px;position: absolute;right: 155px;top: 7px;' },
|
||||
'flex align-center justify-center app-player-button'
|
||||
); //'div', divStr, {}, 'class'
|
||||
let closeBtn = util.createDom('div', divClose, {}, 'app-close-btn');
|
||||
let xgControls = this.player.root.querySelector('xg-controls');
|
||||
let xgError = this.player.root.querySelector('xg-error');
|
||||
xgControls.appendChild(customBtn);
|
||||
this.player.root.appendChild(closeBtn);
|
||||
|
||||
// let shot = customBtn.querySelector('.button-screen-shot');
|
||||
// let set = customBtn.querySelector('.button-set');
|
||||
// let history = customBtn.querySelector('.button-history');
|
||||
let closeBtnc = closeBtn.querySelector('.app-close-btn-c');
|
||||
let playback = customBtn.querySelector('.button-playback');
|
||||
|
||||
this.player.on('play', () => {});
|
||||
this.player.on('focus', () => {
|
||||
if (hasCloseBtn) {
|
||||
closeBtn.style.display = 'block';
|
||||
}
|
||||
});
|
||||
this.player.on('ended', () => {});
|
||||
this.player.on('blur', () => {
|
||||
closeBtn.style.display = 'none';
|
||||
});
|
||||
|
||||
this.player.on('error', () => {});
|
||||
|
||||
if (closeBtnc) {
|
||||
closeBtnc.addEventListener('click', () => {
|
||||
this.closePlayer();
|
||||
});
|
||||
}
|
||||
|
||||
// 点击视频时间,设置selectIndex
|
||||
this.player.video.addEventListener('click', () => {
|
||||
// this.selectIndex = index;
|
||||
// this.$parent.setSelectIndex(index);
|
||||
this.$emit('clickPlayer', index);
|
||||
});
|
||||
|
||||
// if (shot) {
|
||||
// shot.addEventListener('click', () => {
|
||||
// this.screenShot(index);
|
||||
// });
|
||||
// }
|
||||
// if (set) {
|
||||
// set.addEventListener('click', () => {
|
||||
// this.setPlay(index);
|
||||
// });
|
||||
// }
|
||||
// if (history) {
|
||||
// history.addEventListener('click', () => {
|
||||
// this.playHistory(index);
|
||||
// });
|
||||
// }
|
||||
},
|
||||
|
||||
changeVideo(url) {
|
||||
this.player.src = url;
|
||||
},
|
||||
|
||||
closePlayer() {
|
||||
this.isPlay = false;
|
||||
if (this.player) {
|
||||
this.player.destroy();
|
||||
this.player = null;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
beforeDestroy() {
|
||||
if (this.player) {
|
||||
this.player.destroy();
|
||||
}
|
||||
// clearInterval(this.intvBuffer);
|
||||
console.log('销毁了');
|
||||
}
|
||||
|
||||
// destroyed() {
|
||||
// if(this.player){
|
||||
// this.player.destroy();
|
||||
// }
|
||||
// }
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.btn-hover:hover {
|
||||
color: #08979c;
|
||||
cursor: pointer;
|
||||
}
|
||||
.btn-hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
.video {
|
||||
position: relative !important;
|
||||
height: 100% !important;
|
||||
width: 100% !important;
|
||||
padding-top: 0px !important;
|
||||
}
|
||||
.app-close-btn {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 5px;
|
||||
z-index: 500;
|
||||
display: none;
|
||||
}
|
||||
.app-close-btn-c {
|
||||
color: #aaffff;
|
||||
font-size: 25px;
|
||||
pointer-events: auto;
|
||||
z-index: 500;
|
||||
}
|
||||
</style>
|
||||
130
rtsp-vue/src/views/video/device/component/flv.vue
Normal file
130
rtsp-vue/src/views/video/device/component/flv.vue
Normal file
@@ -0,0 +1,130 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-card>
|
||||
<el-row :gutter="1" type="flex" align="middle">
|
||||
<el-col :span="4">
|
||||
<el-text class="mx-1" type="primary">设备IP:{{ tableData.ip }}</el-text>
|
||||
</el-col>
|
||||
<el-col :span="3">
|
||||
<div style="display: flex;">
|
||||
<el-text class="mx-1" type="primary">设备类型:</el-text>
|
||||
<dict-tag :options="device_type" :value="tableData.type"/>
|
||||
</div>
|
||||
</el-col>
|
||||
<el-col :span="10">
|
||||
<div style="display: flex;">
|
||||
<el-text class="mx-1" type="primary">播放地址:</el-text>
|
||||
<el-input v-model="playUrl" placeholder="播放地址" disabled style="width: 85%"></el-input>
|
||||
</div>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-button @click="handlePlay" type="primary">刷新</el-button>
|
||||
<el-button @click="handleCopy" type="primary">复制</el-button>
|
||||
<el-button @click="handleCatch" type="primary">捕捉</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-card>
|
||||
<div style="height: 20px;"></div>
|
||||
<el-card>
|
||||
<div style="width: 800px; height: 600px;" v-if="selected == 0">
|
||||
<el-row :gutter="10" >
|
||||
<el-col :span="24">
|
||||
<div @click="clickVideo(0)" class="selectVideo">
|
||||
<CusPlayer @clickPlayer="clickPlayer" ref="video"></CusPlayer>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
<div style="height: 20px;"></div>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="Flv">
|
||||
import {useRoute} from 'vue-router'
|
||||
import {ref, onMounted} from 'vue';
|
||||
import 'xgplayer';
|
||||
import FlvJsPlayer from 'xgplayer-flv.js';
|
||||
import CusPlayer from './cusPlayer.vue';
|
||||
import {getDevice} from "@/api/video/device";
|
||||
|
||||
const {proxy} = getCurrentInstance();
|
||||
const {device_type} = proxy.useDict('device_type');
|
||||
|
||||
const route = useRoute();
|
||||
|
||||
const selected = ref(0);
|
||||
const videoIndex = ref(0);
|
||||
const tableData = ref([]);
|
||||
const selectValue = ref('');
|
||||
const playUrl = ref('');
|
||||
const useffmpeg = ref(false);
|
||||
const video = ref(null);
|
||||
|
||||
onMounted(() => {
|
||||
getDetails(route.query.deviceId);
|
||||
})
|
||||
|
||||
const getDetails = async (deviceId) => {
|
||||
const res = await getDevice(deviceId);
|
||||
tableData.value = res.data;
|
||||
playUrl.value = `http://localhost:8866/live?url=${tableData.value.url}`;
|
||||
handlePlay();
|
||||
}
|
||||
|
||||
const handleCatch = () => {
|
||||
console.log("捕捉事件开始")
|
||||
}
|
||||
|
||||
const handleCopy = async () => {
|
||||
try {
|
||||
if (!navigator.clipboard) {
|
||||
throw new Error('浏览器不支持复制功能');
|
||||
}
|
||||
await navigator.clipboard.writeText(playUrl.value);
|
||||
proxy.$modal.msgSuccess('复制成功');
|
||||
} catch (error) {
|
||||
console.error('复制失败:', error);
|
||||
try {
|
||||
const textArea = document.createElement('textarea');
|
||||
textArea.value = playUrl.value;
|
||||
document.body.appendChild(textArea);
|
||||
textArea.select();
|
||||
const success = document.execCommand('copy');
|
||||
document.body.removeChild(textArea);
|
||||
if (success) {
|
||||
proxy.$modal.msgSuccess('复制成功');
|
||||
} else {
|
||||
throw new Error('复制失败');
|
||||
}
|
||||
} catch (fallbackError) {
|
||||
console.error('备用复制方法失败:', fallbackError);
|
||||
proxy.$modal.msgError('复制失败,请手动复制');
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
const handlePlay = () => {
|
||||
if (playUrl.value) {
|
||||
video.value.createPlayer(playUrl.value, 0)
|
||||
} else {
|
||||
alert('请填写播放地址');
|
||||
}
|
||||
};
|
||||
|
||||
const clickVideo = (index) => {
|
||||
videoIndex.value = index;
|
||||
}
|
||||
|
||||
const clickPlayer = (index) => {
|
||||
videoIndex.value = index;
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.selectVideo {
|
||||
height: 600px;
|
||||
width: 800px;
|
||||
}
|
||||
</style>
|
||||
314
rtsp-vue/src/views/video/device/index.vue
Normal file
314
rtsp-vue/src/views/video/device/index.vue
Normal file
@@ -0,0 +1,314 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="设备类型" prop="type">
|
||||
<el-select v-model="queryParams.type" placeholder="请选择设备类型" clearable>
|
||||
<el-option
|
||||
v-for="dict in device_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="Plus"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['video:device:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="Edit"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['video:device:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="Delete"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['video:device:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="Download"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['video:device:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="deviceList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- <el-table-column label="设备ID" align="center" prop="deviceId" />-->
|
||||
<el-table-column label="IP地址" align="center" prop="ip" width="150" fixed />
|
||||
<el-table-column label="设备类型" align="center" prop="type" width="80">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="device_type" :value="scope.row.type"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="播放地址" align="center" prop="url" width="700">
|
||||
</el-table-column>
|
||||
<el-table-column label="启用flv" align="center" prop="enabledFlv" width="80">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="device_on_status" :value="scope.row.enabledFlv"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="启用hls" align="center" prop="enabledHls" width="80">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="device_on_status" :value="scope.row.enabledHls"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" min-width="200">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="VideoCameraFilled" @click="handleVideoCameraFilled(scope.row)">播放</el-button>
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['video:device:edit']">修改</el-button>
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['video:device:remove']">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改设备对话框 -->
|
||||
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||
<el-form ref="deviceRef" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="IP地址" prop="ip">
|
||||
<el-input v-model="form.ip" placeholder="请输入IP地址" />
|
||||
</el-form-item>
|
||||
<el-form-item label="设备类型" prop="type">
|
||||
<el-select v-model="form.type" placeholder="请选择设备类型">
|
||||
<el-option
|
||||
v-for="dict in device_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="设备账号" prop="userName">
|
||||
<el-input v-model="form.userName" placeholder="请输入设备账号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="设备密码" prop="password">
|
||||
<el-input v-model="form.password" placeholder="请输入设备密码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="启用flv" prop="enabledFlv">
|
||||
<el-radio-group v-model="form.enabledFlv">
|
||||
<el-radio
|
||||
v-for="dict in device_on_status"
|
||||
:key="dict.value"
|
||||
:label="dict.value"
|
||||
>{{dict.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="启用hls" prop="enabledHls">
|
||||
<el-radio-group v-model="form.enabledHls">
|
||||
<el-radio
|
||||
v-for="dict in device_on_status"
|
||||
:key="dict.value"
|
||||
:label="dict.value"
|
||||
>{{dict.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="Device">
|
||||
import router from '@/router'
|
||||
import { listDevice, getDevice, delDevice, addDevice, updateDevice } from "@/api/video/device";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
const { device_on_status, device_type } = proxy.useDict('device_on_status', 'device_type');
|
||||
|
||||
const deviceList = ref([]);
|
||||
const open = ref(false);
|
||||
const loading = ref(true);
|
||||
const showSearch = ref(true);
|
||||
const ids = ref([]);
|
||||
const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
const title = ref("");
|
||||
|
||||
const data = reactive({
|
||||
form: {},
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
type: null,
|
||||
},
|
||||
rules: {
|
||||
ip: [
|
||||
{ required: true, message: "IP地址不能为空", trigger: "blur" }
|
||||
],
|
||||
type: [
|
||||
{ required: true, message: "设备类型(1=haikan,2=dahua)不能为空", trigger: "change" }
|
||||
],
|
||||
userName: [
|
||||
{ required: true, message: "设备账号不能为空", trigger: "blur" }
|
||||
],
|
||||
password: [
|
||||
{ required: true, message: "设备密码不能为空", trigger: "blur" }
|
||||
],
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
const handleVideoCameraFilled = (row) => {
|
||||
router.push({ path: "/video/flv", query: {deviceId: row.deviceId} });
|
||||
}
|
||||
|
||||
/** 查询设备列表 */
|
||||
function getList() {
|
||||
loading.value = true;
|
||||
listDevice(queryParams.value).then(response => {
|
||||
deviceList.value = response.rows;
|
||||
total.value = response.total;
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
// 取消按钮
|
||||
function cancel() {
|
||||
open.value = false;
|
||||
reset();
|
||||
}
|
||||
|
||||
// 表单重置
|
||||
function reset() {
|
||||
form.value = {
|
||||
deviceId: null,
|
||||
ip: null,
|
||||
type: null,
|
||||
userName: null,
|
||||
password: null,
|
||||
url: null,
|
||||
enabledFlv: '1',
|
||||
enabledHls: '1',
|
||||
mode: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: null
|
||||
};
|
||||
proxy.resetForm("deviceRef");
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
proxy.resetForm("queryRef");
|
||||
handleQuery();
|
||||
}
|
||||
|
||||
// 多选框选中数据
|
||||
function handleSelectionChange(selection) {
|
||||
ids.value = selection.map(item => item.deviceId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
function handleAdd() {
|
||||
reset();
|
||||
open.value = true;
|
||||
title.value = "添加设备";
|
||||
}
|
||||
|
||||
/** 修改按钮操作 */
|
||||
function handleUpdate(row) {
|
||||
reset();
|
||||
const _deviceId = row.deviceId || ids.value
|
||||
getDevice(_deviceId).then(response => {
|
||||
form.value = response.data;
|
||||
open.value = true;
|
||||
title.value = "修改设备";
|
||||
});
|
||||
}
|
||||
|
||||
/** 提交按钮 */
|
||||
function submitForm() {
|
||||
proxy.$refs["deviceRef"].validate(valid => {
|
||||
if (valid) {
|
||||
if (form.value.deviceId != null) {
|
||||
updateDevice(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("修改成功");
|
||||
open.value = false;
|
||||
getList();
|
||||
});
|
||||
} else {
|
||||
addDevice(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("新增成功");
|
||||
open.value = false;
|
||||
getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
function handleDelete(row) {
|
||||
const _deviceIds = row.deviceId || ids.value;
|
||||
proxy.$modal.confirm('是否确认删除设备编号为"' + _deviceIds + '"的数据项?').then(function() {
|
||||
return delDevice(_deviceIds);
|
||||
}).then(() => {
|
||||
getList();
|
||||
proxy.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
function handleExport() {
|
||||
proxy.download('video/device/export', {
|
||||
...queryParams.value
|
||||
}, `device_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
getList();
|
||||
</script>
|
||||
247
rtsp-vue/src/views/video/image/index.vue
Normal file
247
rtsp-vue/src/views/video/image/index.vue
Normal file
@@ -0,0 +1,247 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="图片名称" prop="imageName">
|
||||
<el-input
|
||||
v-model="queryParams.imageName"
|
||||
placeholder="请输入图片名称"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="Plus"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['video:image:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="Edit"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['video:image:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="Delete"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['video:image:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="Download"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['video:image:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="imageList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- <el-table-column label="主键" align="center" prop="id" />-->
|
||||
<el-table-column label="图片名称" align="center" prop="imageName" >
|
||||
<template #default="scope">
|
||||
<el-image :src="`/dev-api${scope.row.imageName}`"
|
||||
preview-teleported
|
||||
:preview-src-list="[`/dev-api${scope.row.imageName}`]"
|
||||
style="width: 50px; height: 50px"
|
||||
fit="cover"></el-image>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="图片数据" align="center" prop="imageData" />-->
|
||||
<!-- <el-table-column label="备注" align="center" prop="remark" />-->
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['video:image:edit']">修改</el-button>
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['video:image:remove']">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改图片存储对话框 -->
|
||||
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||
<el-form ref="imageRef" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="图片名称" prop="imageName">
|
||||
<el-input v-model="form.imageName" placeholder="请输入图片名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="Image">
|
||||
import { listImage, getImage, delImage, addImage, updateImage } from "@/api/video/image";
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
const imageList = ref([]);
|
||||
const open = ref(false);
|
||||
const loading = ref(true);
|
||||
const showSearch = ref(true);
|
||||
const ids = ref([]);
|
||||
const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
const title = ref("");
|
||||
|
||||
const data = reactive({
|
||||
form: {},
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
imageName: null,
|
||||
imageData: null,
|
||||
},
|
||||
rules: {
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询图片存储列表 */
|
||||
function getList() {
|
||||
loading.value = true;
|
||||
listImage(queryParams.value).then(response => {
|
||||
imageList.value = response.rows;
|
||||
total.value = response.total;
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
// 取消按钮
|
||||
function cancel() {
|
||||
open.value = false;
|
||||
reset();
|
||||
}
|
||||
|
||||
// 表单重置
|
||||
function reset() {
|
||||
form.value = {
|
||||
id: null,
|
||||
imageName: null,
|
||||
imageData: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: null
|
||||
};
|
||||
proxy.resetForm("imageRef");
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
proxy.resetForm("queryRef");
|
||||
handleQuery();
|
||||
}
|
||||
|
||||
// 多选框选中数据
|
||||
function handleSelectionChange(selection) {
|
||||
ids.value = selection.map(item => item.id);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
function handleAdd() {
|
||||
reset();
|
||||
open.value = true;
|
||||
title.value = "添加图片存储";
|
||||
}
|
||||
|
||||
/** 修改按钮操作 */
|
||||
function handleUpdate(row) {
|
||||
reset();
|
||||
const _id = row.id || ids.value
|
||||
getImage(_id).then(response => {
|
||||
form.value = response.data;
|
||||
open.value = true;
|
||||
title.value = "修改图片存储";
|
||||
});
|
||||
}
|
||||
|
||||
/** 提交按钮 */
|
||||
function submitForm() {
|
||||
proxy.$refs["imageRef"].validate(valid => {
|
||||
if (valid) {
|
||||
if (form.value.id != null) {
|
||||
updateImage(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("修改成功");
|
||||
open.value = false;
|
||||
getList();
|
||||
});
|
||||
} else {
|
||||
addImage(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("新增成功");
|
||||
open.value = false;
|
||||
getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
function handleDelete(row) {
|
||||
const _ids = row.id || ids.value;
|
||||
proxy.$modal.confirm('是否确认删除图片存储编号为"' + _ids + '"的数据项?').then(function() {
|
||||
return delImage(_ids);
|
||||
}).then(() => {
|
||||
getList();
|
||||
proxy.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
function handleExport() {
|
||||
proxy.download('video/image/export', {
|
||||
...queryParams.value
|
||||
}, `image_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
getList();
|
||||
</script>
|
||||
Reference in New Issue
Block a user