From 3c093da398a4a9271c463341556d7621c1e4d0df Mon Sep 17 00:00:00 2001 From: hanbaoshan <hanbaoshan@aiotlink.com> Date: 星期五, 18 九月 2020 13:45:39 +0800 Subject: [PATCH] 场景编辑回显参数过滤逻辑修改 --- src/pages/cameraAccess/index/App.vue | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/pages/cameraAccess/index/App.vue b/src/pages/cameraAccess/index/App.vue index e60b5dc..fbe41cb 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" :height="screenHeight"></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() { @@ -69,16 +72,16 @@ // height: inherit; background-color: #fff; position: relative; + //float: left; } .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; @@ -109,7 +112,7 @@ border-right: 2px solid #efefef; border-left: 1px solid #e0e0e0; pointer-events: none; - cursor: ew-resize; + //cursor: ew-resize; } .resize-bar:hover ~ .resize-line, .resize-bar:active ~ .resize-line { -- Gitblit v1.8.0