mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改Load事件
This commit is contained in:
parent
ebe84e585e
commit
8894315afc
@ -171,13 +171,16 @@ $(function () {
|
|||||||
};
|
};
|
||||||
/*! 页面加载层 */
|
/*! 页面加载层 */
|
||||||
this.page = {
|
this.page = {
|
||||||
|
$body: $('body>.think-page-loader'),
|
||||||
|
$main: $('.think-page-body+.think-page-loader'),
|
||||||
show: function () {
|
show: function () {
|
||||||
if ($('body>.think-page-loader').is(':hidden')) {
|
if (that.page.$body.is(':hidden')) that.page.$main.removeClass('layui-hide').show();
|
||||||
$('.think-page-body+.think-page-loader').removeClass('layui-hide').show();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
hide: function () {
|
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;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
z-index: 999999;
|
z-index: 999999;
|
||||||
margin-top: -30px;
|
margin: -30px 0 0 -30px;
|
||||||
position: relative;
|
position: fixed;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-color: @LoadBackColor;
|
background-color: @LoadBackColor;
|
||||||
}
|
}
|
||||||
|
@ -312,7 +312,7 @@
|
|||||||
.layui-layout-left-mini {
|
.layui-layout-left-mini {
|
||||||
|
|
||||||
.layui-header, .think-page-body + .think-page-loader {
|
.layui-header, .think-page-body + .think-page-loader {
|
||||||
left: @LayoutMiniLeftSize;
|
left: @LayoutMiniLeftSize !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .layui-body {
|
> .layui-body {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user