diff --git a/src/assets/BI/fenjiguankong.png b/src/assets/BI/fenjiguankong.png index c0cf613..26537c9 100644 Binary files a/src/assets/BI/fenjiguankong.png and b/src/assets/BI/fenjiguankong.png differ diff --git a/src/views/keyprojects/platformvideo/index.vue b/src/views/keyprojects/platformvideo/index.vue index cfc9067..31df8e3 100644 --- a/src/views/keyprojects/platformvideo/index.vue +++ b/src/views/keyprojects/platformvideo/index.vue @@ -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) { diff --git a/src/views/keyprojects/videomanager/components/video-list.vue b/src/views/keyprojects/videomanager/components/video-list.vue index 67f9176..a9adc76 100644 --- a/src/views/keyprojects/videomanager/components/video-list.vue +++ b/src/views/keyprojects/videomanager/components/video-list.vue @@ -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