-
+
-
+
+
导出
@@ -148,6 +149,7 @@
已完成
+
@@ -174,8 +176,23 @@
+
+
+ {{ scope.row.operatorName }}
+ ——
+
+
+
+
+
+
+ 查看
+
+ ——
+
+
@@ -197,6 +214,24 @@
暂无数据
+
+
+
+
+
+
+
+
+
+
@@ -255,7 +290,9 @@ export default {
],
query: {
status: ''
- }
+ },
+ hkVideoVisible: false,
+ videoUrl: ''
}
},
computed: {
@@ -325,6 +362,17 @@ export default {
// 关闭弹框前的操作
[CRUD.HOOK.beforeAddCancel](crud) {
},
+ handleViewVideo(data) {
+ const videoId = data.videoId
+ this.hkVideoVisible = true
+ // 测试用
+ // this.videoUrl = this.baseApi + '/api/minio/video/play?fileName=ceshi20260602video.mp4'
+ this.videoUrl = this.baseApi + '/api/minio/video/play?fileName=' + videoId
+ },
+ handleClose() {
+ this.hkVideoVisible = false
+ this.videoUrl = ''
+ },
searchChange(val) {
// 切换类型时清空关键词
this.keyWord = ''
@@ -414,20 +462,6 @@ export default {