mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
优化页面 底部显示不正常问题
This commit is contained in:
parent
cacb692f72
commit
85527a8823
@ -41,7 +41,7 @@
|
||||
<vc:create name="bodyTop" domain="frameComponents"></vc:create>
|
||||
<div class="vc">
|
||||
<vc:create name="menu" domain="frameComponents"></vc:create>
|
||||
<div id="vc-page" class="gray-bg dashbard-1" style="min-height: 800px;">
|
||||
<div id="vc-page" class="gray-bg dashbard-1 vc-page-height" >
|
||||
<div class="border-bottom">
|
||||
<vc:create name="nav" domain="frameComponents"></vc:create>
|
||||
</div>
|
||||
|
||||
@ -41,7 +41,7 @@
|
||||
<vc:create name="menu" domain="frameComponents"></vc:create>
|
||||
|
||||
|
||||
<div id="vc-page" class="gray-bg dashbard-1">
|
||||
<div id="vc-page" class="gray-bg dashbard-1 vc-page-height">
|
||||
<div class="border-bottom">
|
||||
<vc:create name="nav" domain="frameComponents"></vc:create>
|
||||
</div>
|
||||
|
||||
@ -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';
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user