From eac5d05a36dd2c1b388bc401166af53716f11771 Mon Sep 17 00:00:00 2001 From: hanbaoshan <hanbaoshan@aiotlink.com> Date: 星期二, 08 九月 2020 16:25:31 +0800 Subject: [PATCH] 底库查看详情默认时间修改,实时监控区域比例调整 --- src/pages/cameraAccess/index/App.vue | 32 ++++++++++++++++++++------------ 1 files changed, 20 insertions(+), 12 deletions(-) diff --git a/src/pages/cameraAccess/index/App.vue b/src/pages/cameraAccess/index/App.vue index c16940c..7aa5017 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() { @@ -43,8 +42,12 @@ this.screenHeight = document.documentElement.clientHeight; })(); }; - debugger - this.leftWith = this.$refs['left'].width; + + this.leftWith = this.$refs['left'].offsetWidth; + this.TreeDataPool.readonly = false; + this.TreeDataPool.gbReadonly = false; + this.DataStackPool.readonly = false; + }, methods: { getUrlKey() { @@ -57,23 +60,27 @@ <style lang="scss" scoped> .column { - //overflow: hidden; + overflow-y: hidden; display: flex; width: 100%; + height: 100%; } .column-left { - height: inherit; + height: 100%; + padding-bottom: 20px; + box-sizing: border-box; + // height: inherit; background-color: #fff; position: relative; } .column-right { - min-width: 1442px; - flex:1; position: relative; + flex: 1; background-color: #fff; box-sizing: border-box; - overflow: auto; - //height: 100%; + overflow-y: hidden; + height: 100%; + min-width: 1680px; } .resize-save { position: absolute; @@ -104,6 +111,7 @@ border-right: 2px solid #efefef; border-left: 1px solid #e0e0e0; pointer-events: none; + cursor: ew-resize; } .resize-bar:hover ~ .resize-line, .resize-bar:active ~ .resize-line { -- Gitblit v1.8.0