Update admin.js

This commit is contained in:
Anyon 2019-09-16 17:04:27 +08:00
parent ecf69d395a
commit 1b8c579751

View File

@ -67,7 +67,7 @@ $(function () {
// 弹出警告框
this.alert = function (msg, callback) {
var index = layer.alert(msg, {end: callback, scrollbar: false});
return this.indexs.push(index), index;
return this.idx.push(index), index;
};
// 确认对话框
this.confirm = function (msg, ok, no) {
@ -82,22 +82,22 @@ $(function () {
// 显示成功类型的消息
this.success = function (msg, time, callback) {
var index = layer.msg(msg, {icon: 1, shade: this.shade, scrollbar: false, end: callback, time: (time || 2) * 1000, shadeClose: true});
return this.indexs.push(index), index;
return this.idx.push(index), index;
};
// 显示失败类型的消息
this.error = function (msg, time, callback) {
var index = layer.msg(msg, {icon: 2, shade: this.shade, scrollbar: false, time: (time || 3) * 1000, end: callback, shadeClose: true});
return this.indexs.push(index), index;
return this.idx.push(index), index;
};
// 状态消息提示
this.tips = function (msg, time, callback) {
var index = layer.msg(msg, {time: (time || 3) * 1000, shade: this.shade, end: callback, shadeClose: true});
return this.indexs.push(index), index;
return this.idx.push(index), index;
};
// 显示正在加载中的提示
this.loading = function (msg, callback) {
var index = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: callback}) : layer.load(2, {time: 0, scrollbar: false, shade: this.shade, end: callback});
return this.indexs.push(index), index;
return this.idx.push(index), index;
};
// 自动处理显示Think返回的Json数据
this.auto = function (ret, time) {
@ -108,8 +108,8 @@ $(function () {
}
return (parseInt(ret.code) === 1) ? this.success(msg, time, function () {
url ? (window.location.href = url) : $.form.reload();
for (var i in that.indexs) layer.close(that.indexs[i]);
that.indexs = [];
for (var i in that.idx) layer.close(that.idx[i]);
that.idx = [];
}) : this.error(msg, 3, function () {
url ? window.location.href = url : '';
});
@ -242,7 +242,7 @@ $(function () {
$.form.reInit($(dom));
}
});
$.msg.indexs.push(index);
$.msg.idx.push(index);
return (typeof callback === 'function') && callback.call(that);
}, loading, tips);
};