修改Load事件

This commit is contained in:
邹景立 2021-08-20 09:59:09 +08:00
parent ebe84e585e
commit 8894315afc
5 changed files with 2082 additions and 9 deletions

View File

@ -171,13 +171,16 @@ $(function () {
};
/*! 页面加载层 */
this.page = {
$body: $('body>.think-page-loader'),
$main: $('.think-page-body+.think-page-loader'),
show: function () {
if ($('body>.think-page-loader').is(':hidden')) {
$('.think-page-body+.think-page-loader').removeClass('layui-hide').show();
}
if (that.page.$body.is(':hidden')) that.page.$main.removeClass('layui-hide').show();
},
hide: function () {
setTimeout("$('.think-page-body+.think-page-loader').fadeOut()", 500);
if (that.page.time) clearTimeout(that.page.time);
that.page.time = setTimeout(function () {
(delete that.page.time), that.page.$main.fadeOut();
}, 500);
},
};
/*! 确认对话框 */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -766,8 +766,8 @@ fieldset {
width: 50px;
height: 50px;
z-index: 999999;
margin-top: -30px;
position: relative;
margin: -30px 0 0 -30px;
position: fixed;
display: inline-block;
background-color: @LoadBackColor;
}

View File

@ -312,7 +312,7 @@
.layui-layout-left-mini {
.layui-header, .think-page-body + .think-page-loader {
left: @LayoutMiniLeftSize;
left: @LayoutMiniLeftSize !important;
}
> .layui-body {