From 270e7443a1e4b8993918347f8094e38cc15cc861 Mon Sep 17 00:00:00 2001 From: hanbaoshan <hanbaoshan@aiotlink.com> Date: 星期日, 06 九月 2020 19:03:45 +0800 Subject: [PATCH] 修复内存信息展示,实时监控视频区域展示测试 --- src/pages/cameraAccess/index/App.vue | 23 +++++++++++++---------- 1 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/pages/cameraAccess/index/App.vue b/src/pages/cameraAccess/index/App.vue index e219928..b83a14a 100644 --- a/src/pages/cameraAccess/index/App.vue +++ b/src/pages/cameraAccess/index/App.vue @@ -4,7 +4,7 @@ <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" :edit="editTree" :height="screenHeight"></left-nav> </div> </div> <div class="column-right" > @@ -43,8 +43,8 @@ this.screenHeight = document.documentElement.clientHeight; })(); }; - debugger - this.leftWith = this.$refs['left'].width; + + this.leftWith = this.$refs['left'].offsetWidth; }, methods: { getUrlKey() { @@ -57,23 +57,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: 1433px; } .resize-save { position: absolute; @@ -84,7 +88,6 @@ padding: 14px; overflow-x: hidden; overflow-y: hidden; - cursor: ew-resize; } .resize-bar { width: 310px; -- Gitblit v1.8.0