From 32b45259ceeea0efd63f27613092ef5f481e7289 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 15 Jul 2022 14:37:14 +0800 Subject: [PATCH] Update admin.js --- public/static/admin.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/static/admin.js b/public/static/admin.js index 1db2846a9..af578954d 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -241,7 +241,12 @@ $(function () { return url ? location.href = url : $.form.reload(); } else return (parseInt(ret.code) === 1) ? this.success(msg, time, function () { url ? location.href = url : $.form.reload(); - that.close($.msg.mdx.length > 0 ? $.msg.mdx.pop() : null); + that.close(function (idx) { + while ($.msg.mdx.length > 0 && (idx = $.msg.mdx.pop())) { + if ($('#layui-layer' + idx).size()) return idx; + } + return null; + }()); }) : this.error(msg, 3, function () { url ? location.href = url : ''; });