From 5159fc32cc34eab7fb361c50c2247c5c091823a0 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 6 Apr 2022 18:11:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20layTable.load=20=E7=9A=84?= =?UTF-8?q?=20time=20=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/admin.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index d30d628c5..bb49c2a90 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -104,10 +104,14 @@ $(function () { /*! 获取加载回调 */ onConfirm.getLoadCallable = function (tabldId, callable) { typeof callable === 'function' && callable(); - return tabldId ? function (ret) { - if (ret.code > 0) return $.msg.success(ret.info, 3, function () { - $.layTable.reload(tabldId); - }) && false; + return tabldId ? function (ret, time) { + if (ret.code > 0) { + if (time === 'false') $.layTable.reload(tabldId); + else $.msg.success(ret.info, time, function () { + $.layTable.reload(tabldId); + }); + return false; + } } : false; } @@ -295,8 +299,9 @@ $(function () { this.success(XMLHttpRequest.responseText); } }, success: function (ret) { - if (typeof callable === 'function' && callable.call(that, ret) === false) return false; - return typeof ret === 'object' ? $.msg.auto(ret, time || ret.wait || undefined) : that.show(ret); + time = time || ret.wait || undefined; + if (typeof callable === 'function' && callable.call(that, ret, time) === false) return false; + return typeof ret === 'object' ? $.msg.auto(ret, time) : that.show(ret); }, complete: function () { $.msg.page.done(); $.msg.close(loadidx);