diff --git a/public/admin.html b/public/admin.html index 5a7301db5..0e6c85bda 100644 --- a/public/admin.html +++ b/public/admin.html @@ -41,7 +41,7 @@
-
+
diff --git a/public/index.html b/public/index.html index db76916af..fd1e162ee 100644 --- a/public/index.html +++ b/public/index.html @@ -41,7 +41,7 @@ -
+
diff --git a/public/vcCore/vcFramework.js b/public/vcCore/vcFramework.js index e96ac22f3..cf9b890ad 100644 --- a/public/vcCore/vcFramework.js +++ b/public/vcCore/vcFramework.js @@ -1786,7 +1786,16 @@ vc 校验 工具类 -method vcFramework.check = function(dataObj,dataConfig){ return vcFramework.validate.validate(dataObj, dataConfig); } -})(window.vcFramework) +})(window.vcFramework); + +//全屏处理 这个后面可以关掉 +(function(vcFramework){ + let _vcPageHeight = document.getElementsByClassName('vc-page-height')[0]; + + //浏览器可见高度 + let _minHeight = document.documentElement.clientHeight; + _vcPageHeight.style.minHeight = _minHeight + 'px'; +});