From 7f37e751c1c9f98671bc3fc06216aeb7781dd386 Mon Sep 17 00:00:00 2001
From: hanbaoshan <hanbaoshan@aiotlink.com>
Date: 星期三, 24 二月 2021 07:25:58 +0800
Subject: [PATCH] 应用中心已激活板块版式更新,添加更新tab页,添加批量更新应用和sdk功能;朔黄标注时间点格式化

---
 src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue |   33 +++++++++++++++++++++------------
 1 files changed, 21 insertions(+), 12 deletions(-)

diff --git a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
index 2d8b3dd..d312194 100644
--- a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
+++ b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue
@@ -147,7 +147,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="CLIP+data.VideoCover" alt />
+                <img :src="data.VideoCover" alt />
               </div>
               <div class="video-info">
                 <div class="base-info">
@@ -202,7 +202,7 @@
         <el-table :data="tableData" fit ref="elTable">
           <el-table-column label="鍚嶇О" prop="VideoName" sortable width="500">
             <template slot-scope="scope">
-              <div style="cursor:pointer;">{{scope.row.VideoName}}</div>
+              <div style="cursor:pointer;" @click="checkVideoDetail(scope.row)">{{scope.row.VideoName}}</div>
             </template>
           </el-table-column>
           <el-table-column label="澶у皬" prop="VideoSize" sortable></el-table-column>
@@ -422,18 +422,18 @@
 
         res.filterlst.forEach(config => {
           this.$set(config, 'isShow', true);
-          config.data = Object.keys(config.Node).map(key => {
-            let obj = {};
-            obj.name = key;
-            obj.id = config.Node[key]
-            return obj
-          });
-          // config.data = config.Node.map((item) => {
+          // config.data = Object.keys(config.Node).map(key => {
           //   let obj = {};
-          //   obj.name = item[0];
-          //   obj.id = item[1];
-          //   return obj;
+          //   obj.name = key;
+          //   obj.id = config.Node[key]
+          //   return obj
           // });
+          config.data = config.Node.map((item) => {
+            let obj = {};
+            obj.name = item[0];
+            obj.id = item[1];
+            return obj;
+          });
           config.id = config.ID;
           config.title = config.NameZn;
           config.data.forEach(item => {
@@ -685,8 +685,17 @@
         }
         .el-menu.el-menu--horizontal {
           border: none;
+          
         }
         .config-submenu {
+          .el-menu--horizontal{
+            //max-width: 700px;
+            //overflow-x: auto;
+            left: 20px!important;
+            &>ul{
+              flex-wrap: wrap;
+            }
+          }
           .el-submenu__title {
             height: 40px;
             line-height: 40px;

--
Gitblit v1.8.0