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'); }