From ae57e6020e6dc41b42f27d5bf2f4ae653f58cb27 Mon Sep 17 00:00:00 2001
From: hanbaoshan <hanbaoshan@aiotlink.com>
Date: 星期四, 17 九月 2020 15:15:54 +0800
Subject: [PATCH] 可视化卡片去除白色背景

---
 src/pages/cameraAccess/index/App.vue |   21 +++++++++++++--------
 1 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/src/pages/cameraAccess/index/App.vue b/src/pages/cameraAccess/index/App.vue
index 5021d75..f6e5d1b 100644
--- a/src/pages/cameraAccess/index/App.vue
+++ b/src/pages/cameraAccess/index/App.vue
@@ -4,10 +4,10 @@
       <div class="resize-bar"></div>
       <div class="resize-line"></div>
       <div class="resize-save">
-        <left-nav :appName="app" :edit="editTree"></left-nav>
+        <left-nav :appName="app" :height="screenHeight"></left-nav>
       </div>
     </div>
-    <div class="column-right" >
+    <div class="column-right">
       <right-side />
     </div>
   </div>
@@ -32,8 +32,7 @@
   data() {
     return {
       leftWith: 0,
-      screenHeight: 0,
-      editTree: true
+      screenHeight: 0
     }
   },
   mounted() {
@@ -45,6 +44,10 @@
     };
 
     this.leftWith = this.$refs['left'].offsetWidth;
+    this.TreeDataPool.readonly = false;
+    this.TreeDataPool.gbReadonly = false;
+    this.DataStackPool.readonly = false;
+
   },
   methods: {
     getUrlKey() {
@@ -63,19 +66,21 @@
   height: 100%;
 }
 .column-left {
-  height: inherit;
+  height: 100%;
+  padding-bottom: 20px;
+  box-sizing: border-box;
+  // height: inherit;
   background-color: #fff;
   position: relative;
 }
 .column-right {
   position: relative;
-  flex:1;
+  flex: 1;
   background-color: #fff;
   box-sizing: border-box;
   overflow-y: hidden;
-  
   height: 100%;
-  min-width: 1433px;
+  min-width: 1602px;
 }
 .resize-save {
   position: absolute;

--
Gitblit v1.8.0