1.修改BI的示意图

2.修改重点工程视频监控的播放时间,原5分钟后自动停止,现在注释,为消防演示做修改
3.修改视频平台列表的删除功能
main
guoyuepeng 2023-11-23 16:59:06 +08:00
parent 7509986666
commit acb91f2bdf
3 changed files with 20 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 KiB

After

Width:  |  Height:  |  Size: 230 KiB

View File

@ -296,15 +296,24 @@ export default {
})
},
handleDel(row) {
requestFN(
'/platformvideomanagement/delLocation',
{
PLATFORMVIDEOMANAGEMENT_ID: row.PLATFORMVIDEOMANAGEMENT_ID
}
).then((res) => {
this.dialogVideoHLS = true
this.getList()
}).catch((e) => {
this.$confirm('确定要删除吗?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.listLoading = true
requestFN(
'/platformvideomanagement/delLocation',
{
PLATFORMVIDEOMANAGEMENT_ID: row.PLATFORMVIDEOMANAGEMENT_ID
}
).then(async (res) => {
// this.dialogVideoHLS = true
this.getList()
await this.getAllList()
}).catch((e) => {
})
}).catch(() => {
})
},
handleMap(row) {

View File

@ -352,8 +352,8 @@ export default {
},
//
showVideo(row) {
this.$message.warning('单次播放最多五分钟')
this.start()
// this.$message.warning('')
// this.start()
if (!row.PLATFORMVIDEOMANAGEMENT_ID) {
this.VIDEOURL = row.VIDEOURL
this.dialogVideo = true