From 86c9a1b4e5f91e85ba3aef98be5961398f55e475 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@iotlink.com>
Date: 星期一, 21 六月 2021 11:48:32 +0800
Subject: [PATCH] 添加lkg删除功能

---
 src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
index be86e3f..360f613 100644
--- a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
+++ b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
@@ -158,7 +158,7 @@
           <el-col :xs="8" :sm="6" :md="6" :lg="6" v-for="data in tabData" :key="data.id">
             <div class="card">
               <div class="video-wrap" @click="checkVideoDetail(data)">
-                <img :src="data.VideoCover" alt />
+                <img :src="data.VideoCover | fixPath" alt />
               </div>
               <div class="video-info">
                 <div class="base-info">
@@ -237,8 +237,8 @@
           </el-table-column>
 
           <el-table-column label="澶у皬" prop="VideoSize" sortable></el-table-column>
-          <el-table-column label="淇敼鏃ユ湡" prop="VideoUpdateDate" sortable></el-table-column>
-          <el-table-column label="鍒涘缓鏃ユ湡" prop="VideoCreateDate" sortable></el-table-column>
+          <el-table-column label="瑙嗛鏃堕棿" prop="VideoDate" sortable></el-table-column>
+          <!-- <el-table-column label="鍒涘缓鏃ユ湡" prop="VideoCreateDate" sortable></el-table-column> -->
 
           <el-table-column label="鎿嶄綔">
             <template slot-scope="scope">
@@ -325,6 +325,15 @@
   components: {
     VideoAnalyze,
     EventVideos,
+  },
+  filters: {
+    fixPath(str) {
+      if (!str || str == undefined) {
+        return ""
+      }
+
+      return str.replace("/opt/vasystem", "")
+    }
   },
   data() {
     return {
@@ -484,6 +493,7 @@
         if (_this.showType == "list") {
           _this.tableTotal = res.total;
           _this.tableData = res.data;
+          debugger
         } else {
           _this.tabTotal = res.total;
           _this.tabData = res.data;

--
Gitblit v1.8.0