parent
7509986666
commit
acb91f2bdf
Binary file not shown.
Before Width: | Height: | Size: 405 KiB After Width: | Height: | Size: 230 KiB |
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue