mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
同步代码
This commit is contained in:
parent
87fa82145b
commit
f5f592e019
@ -33,13 +33,20 @@
|
|||||||
<!-- 左则菜单 结束 -->
|
<!-- 左则菜单 结束 -->
|
||||||
|
|
||||||
<!-- 主体内容 开始 -->
|
<!-- 主体内容 开始 -->
|
||||||
<div class="layui-body">{block name='content'}{/block}</div>
|
<div class="layui-body">
|
||||||
|
<div class="think-page-body">
|
||||||
|
{block name='content'}{/block}
|
||||||
|
</div>
|
||||||
|
<!-- 页面加载动画 -->
|
||||||
|
<div class="think-page-loader layui-hide">
|
||||||
|
<div class="loader"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 主体内容 结束 -->
|
<!-- 主体内容 结束 -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 加载动画 开始 -->
|
<!-- 加载动画 开始 -->
|
||||||
<div class="layui-page-loader">
|
<div class="think-page-loader">
|
||||||
<div class="loader"></div>
|
<div class="loader"></div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 加载动画 结束 -->
|
<!-- 加载动画 结束 -->
|
||||||
|
@ -169,6 +169,17 @@ $(function () {
|
|||||||
var idx = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: call}) : layer.load(2, {time: 0, scrollbar: false, shade: this.shade, end: call});
|
var idx = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: call}) : layer.load(2, {time: 0, scrollbar: false, shade: this.shade, end: call});
|
||||||
return that.idx.push(idx), idx;
|
return that.idx.push(idx), idx;
|
||||||
};
|
};
|
||||||
|
/*! 页面加载层 */
|
||||||
|
this.page = {
|
||||||
|
show: function () {
|
||||||
|
if ($('body>.think-page-loader').is(':hidden')) {
|
||||||
|
$('.think-page-body+.think-page-loader').removeClass('layui-hide').show();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
hide: function () {
|
||||||
|
setTimeout("$('.think-page-body+.think-page-loader').fadeOut()", 500);
|
||||||
|
},
|
||||||
|
};
|
||||||
/*! 确认对话框 */
|
/*! 确认对话框 */
|
||||||
this.confirm = function (msg, ok, no) {
|
this.confirm = function (msg, ok, no) {
|
||||||
return layer.confirm(msg, {title: '操作确认', btn: ['确认', '取消']}, function (idx) {
|
return layer.confirm(msg, {title: '操作确认', btn: ['确认', '取消']}, function (idx) {
|
||||||
@ -196,7 +207,7 @@ $(function () {
|
|||||||
$.form = new function (that) {
|
$.form = new function (that) {
|
||||||
that = this;
|
that = this;
|
||||||
/*! 内容区选择器 */
|
/*! 内容区选择器 */
|
||||||
this.selecter = '.layui-layout-admin>.layui-body';
|
this.selecter = '.layui-layout-admin>.layui-body>.think-page-body';
|
||||||
/*! 刷新当前页面 */
|
/*! 刷新当前页面 */
|
||||||
this.reload = function (force) {
|
this.reload = function (force) {
|
||||||
if (force) top.location.reload();
|
if (force) top.location.reload();
|
||||||
@ -390,7 +401,7 @@ $(function () {
|
|||||||
window.onhashchange = function (hash, node) {
|
window.onhashchange = function (hash, node) {
|
||||||
hash = location.hash || '';
|
hash = location.hash || '';
|
||||||
if (hash.length < 1) return $('[data-menu-node]:first').trigger('click');
|
if (hash.length < 1) return $('[data-menu-node]:first').trigger('click');
|
||||||
$.form.load(hash), that.syncOpenStatus(2);
|
$.msg.page.show(), $.form.load(hash, {}, 'get', $.msg.page.hide, false), that.syncOpenStatus(2);
|
||||||
/*! 菜单选择切换 */
|
/*! 菜单选择切换 */
|
||||||
node = node || that.queryNode(that.getUri());
|
node = node || that.queryNode(that.getUri());
|
||||||
if (/^m-/.test(node)) {
|
if (/^m-/.test(node)) {
|
||||||
@ -1004,7 +1015,7 @@ $(function () {
|
|||||||
/*! 延时关闭加载动画 */
|
/*! 延时关闭加载动画 */
|
||||||
window.addEventListener('load', function () {
|
window.addEventListener('load', function () {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
$('body>.layui-page-loader').fadeOut();
|
$('body>.think-page-loader').fadeOut();
|
||||||
}, 200);
|
}, 200);
|
||||||
}, true);
|
}, true);
|
||||||
|
|
||||||
|
@ -56,11 +56,11 @@
|
|||||||
@LeftMainNavActiveTextColor: #FFF;
|
@LeftMainNavActiveTextColor: #FFF;
|
||||||
|
|
||||||
// 加载页面背景颜色
|
// 加载页面背景颜色
|
||||||
@LoadBackColor: #EEE;
|
@LoadBackColor: #EFEFEF;
|
||||||
|
|
||||||
// 窗口页面背景颜色
|
// 窗口页面背景颜色
|
||||||
@BodyMainTop: 51px;
|
@BodyMainTop: 51px;
|
||||||
@BodyMainBackColor: #EEE;
|
@BodyMainBackColor: #EFEFEF;
|
||||||
|
|
||||||
// 左侧菜单大小
|
// 左侧菜单大小
|
||||||
@LayoutMiniLeftSize: 50px;
|
@LayoutMiniLeftSize: 50px;
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -751,21 +751,24 @@ fieldset {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*! 首页加载动画 */
|
/*! 首页加载动画 */
|
||||||
.layui-page-loader {
|
.think-page-loader {
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
left: 0;
|
||||||
height: 100%;
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
z-index: 9999999;
|
z-index: 9999999;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
text-align: center;
|
||||||
background-color: @LoadBackColor;
|
background-color: @LoadBackColor;
|
||||||
|
|
||||||
.loader {
|
.loader {
|
||||||
top: 50%;
|
top: 50%;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
margin: -30px auto 40px;
|
|
||||||
z-index: 999999;
|
z-index: 999999;
|
||||||
|
margin-top: -30px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
background-color: @LoadBackColor;
|
background-color: @LoadBackColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -776,9 +779,9 @@ fieldset {
|
|||||||
height: 7px;
|
height: 7px;
|
||||||
opacity: 0.1;
|
opacity: 0.1;
|
||||||
content: "";
|
content: "";
|
||||||
background: #000;
|
|
||||||
border-radius: 50%;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #000;
|
||||||
animation: shadow .5s linear infinite;
|
animation: shadow .5s linear infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,7 +247,11 @@
|
|||||||
background: @BodyMainBackColor;
|
background: @BodyMainBackColor;
|
||||||
box-shadow: @ShadowDownInset;
|
box-shadow: @ShadowDownInset;
|
||||||
|
|
||||||
> .layui-card {
|
> .think-page-body + .think-page-loader {
|
||||||
|
left: @LayoutDefaLeftSzie
|
||||||
|
}
|
||||||
|
|
||||||
|
> .think-page-body > .layui-card {
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
|
|
||||||
@ -304,15 +308,17 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.layui-layout-left-mini {
|
.layui-layout-left-mini {
|
||||||
.layui-header {
|
|
||||||
|
.layui-header, .think-page-body + .think-page-loader {
|
||||||
left: @LayoutMiniLeftSize;
|
left: @LayoutMiniLeftSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .layui-body {
|
> .layui-body {
|
||||||
left: @LayoutMiniLeftSize;
|
left: @LayoutMiniLeftSize;
|
||||||
|
|
||||||
> .layui-card {
|
> .think-page-body > .layui-card {
|
||||||
> .layui-card-header {
|
> .layui-card-header {
|
||||||
left: @LayoutMiniLeftSize;
|
left: @LayoutMiniLeftSize;
|
||||||
}
|
}
|
||||||
@ -372,14 +378,14 @@
|
|||||||
> .layui-body {
|
> .layui-body {
|
||||||
left: 0 !important;
|
left: 0 !important;
|
||||||
|
|
||||||
> .layui-card {
|
> .think-page-body > .layui-card {
|
||||||
> .layui-card-header {
|
> .layui-card-header {
|
||||||
left: 0 !important;
|
left: 0 !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> .layui-header {
|
> .layui-header, .think-page-body + .think-page-loader {
|
||||||
left: 0 !important;
|
left: 0 !important;
|
||||||
|
|
||||||
.layui-logo-hide {
|
.layui-logo-hide {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user