mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改Load事件
This commit is contained in:
parent
ebe84e585e
commit
8894315afc
@ -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
@ -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;
|
||||
}
|
||||
|
@ -312,7 +312,7 @@
|
||||
.layui-layout-left-mini {
|
||||
|
||||
.layui-header, .think-page-body + .think-page-loader {
|
||||
left: @LayoutMiniLeftSize;
|
||||
left: @LayoutMiniLeftSize !important;
|
||||
}
|
||||
|
||||
> .layui-body {
|
||||
|
Loading…
x
Reference in New Issue
Block a user