Commit b7acae5f by fengshuonan

更新表单样式

parent 2e968415
......@@ -95,13 +95,7 @@ Feng.getClientHeight = function () {
return clientHeight;
};
Feng.getClientHeightPx = function () {
let clientHeight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
clientHeight = (document.body.clientHeight < document.documentElement.clientHeight) ? document.body.clientHeight : document.documentElement.clientHeight;
} else {
clientHeight = (document.body.clientHeight > document.documentElement.clientHeight) ? document.body.clientHeight : document.documentElement.clientHeight;
}
return clientHeight + 'px';
return Feng.getClientHeight() + 'px';
};
// 以下代码是配置layui扩展模块的目录,每个页面都需要引入
......
......@@ -17,7 +17,6 @@
right: 0;
background-color: #F2F2F2;
padding: 10px 20px;
box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, .05);
}
.layui-card-body {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment