From 5dc36d1e0ea55358eb5b7273943897a75403993c Mon Sep 17 00:00:00 2001
From: hanbaoshan <hanbaoshan@aiotlink.com>
Date: 星期四, 13 八月 2020 17:26:09 +0800
Subject: [PATCH] 修复底库分页全屏不显示,场景编辑可选参数默认选中第一个operator,表单必填项红星对齐方式修改

---
 src/pages/library/index/App.vue |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/pages/library/index/App.vue b/src/pages/library/index/App.vue
index 3bb206e..bb63ca9 100644
--- a/src/pages/library/index/App.vue
+++ b/src/pages/library/index/App.vue
@@ -126,9 +126,11 @@
   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;
@@ -143,6 +145,7 @@
   border-radius: 5px;
 }
 .data-left-box {
+  height: 100%;
   @media screen and (max-width: 1440px) {
     width: 23%;
   }
@@ -156,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