From d4cd7df0bd1484c31e37bcb0642e89ecdcf7ab29 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@iotlink.com> Date: 星期四, 17 九月 2020 10:55:22 +0800 Subject: [PATCH] 处理外网端口映射无法跳转的问题 --- src/pages/library/index/App.vue | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/pages/library/index/App.vue b/src/pages/library/index/App.vue index 5623643..bb63ca9 100644 --- a/src/pages/library/index/App.vue +++ b/src/pages/library/index/App.vue @@ -125,9 +125,12 @@ .s-base-manage { box-sizing: border-box; background-color: #e9ebf2; + min-width: 1315px; + height: 100%; } .base-overflow { - overflow: visible !important; + height: 100%; + //overflow: visible !important; background-color: #ffffff; box-sizing: border-box; // padding: 20px 10px 0 10px; @@ -142,6 +145,7 @@ border-radius: 5px; } .data-left-box { + height: 100%; @media screen and (max-width: 1440px) { width: 23%; } @@ -155,6 +159,8 @@ border-right: 1px solid #e0e0e0; } .data-right-box { + height: calc(100% - 40px); + overflow-y: auto; @media screen and (max-width: 1440px) { width: 77%; } -- Gitblit v1.8.0