From f6d68a2701e14572e9e3744df3fdb4fe40c97520 Mon Sep 17 00:00:00 2001 From: suncz Date: Thu, 9 May 2024 17:19:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/css/common-table.css | 2 +- src/main/webapp/resources/css/complex-add.css | 2 +- src/main/webapp/resources/js/select-field.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/resources/css/common-table.css b/src/main/webapp/resources/css/common-table.css index 686e58d..57e498c 100644 --- a/src/main/webapp/resources/css/common-table.css +++ b/src/main/webapp/resources/css/common-table.css @@ -3,7 +3,7 @@ overflow-x: auto; box-sizing: border-box; width: 98%; - max-height: 540px; + max-height: 650px; margin: 8px auto 0 auto; border-top: 1px solid #eaeef1; border-left: 1px solid #eaeef1; diff --git a/src/main/webapp/resources/css/complex-add.css b/src/main/webapp/resources/css/complex-add.css index 0c5d88a..58e2660 100644 --- a/src/main/webapp/resources/css/complex-add.css +++ b/src/main/webapp/resources/css/complex-add.css @@ -95,7 +95,7 @@ overflow-x: auto; box-sizing: border-box; width: initial; - max-height: 362px; + max-height: 615px; margin: 0 10px; border-top: 1px solid #dadada; border-left: 1px solid #dadada; diff --git a/src/main/webapp/resources/js/select-field.js b/src/main/webapp/resources/js/select-field.js index 43975aa..48f5508 100644 --- a/src/main/webapp/resources/js/select-field.js +++ b/src/main/webapp/resources/js/select-field.js @@ -619,7 +619,7 @@ // 动态设置高度 function dynamicSetHeight($wrapper) { - var maxHeight = $(window).height() - $wrapper.offset().top - 52; + var maxHeight = $(window).height() - $wrapper.offset().top - 62; $wrapper.css('maxHeight', maxHeight + 'px'); }