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) { handleDel(row) {
requestFN( this.$confirm('确定要删除吗?', {
'/platformvideomanagement/delLocation', confirmButtonText: '确定',
{ cancelButtonText: '取消',
PLATFORMVIDEOMANAGEMENT_ID: row.PLATFORMVIDEOMANAGEMENT_ID type: 'warning'
} }).then(() => {
).then((res) => { this.listLoading = true
this.dialogVideoHLS = true requestFN(
this.getList() '/platformvideomanagement/delLocation',
}).catch((e) => { {
PLATFORMVIDEOMANAGEMENT_ID: row.PLATFORMVIDEOMANAGEMENT_ID
}
).then(async (res) => {
// this.dialogVideoHLS = true
this.getList()
await this.getAllList()
}).catch((e) => {
})
}).catch(() => {
}) })
}, },
handleMap(row) { handleMap(row) {

View File

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