From 1f7f94431c7d020f7d73e0b354e03eff80d99046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 13 Jul 2021 17:24:22 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E5=8D=95=E5=A2=9E=E5=8A=A0=20data-con?= =?UTF-8?q?firm=20=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/admin.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index 5537852fd..b4fea632d 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -492,10 +492,14 @@ $(function () { $('form[data-auto]').map(function (index, form) { if (this.dataset.listen === 'true') return true; $(this).attr('data-listen', 'true').vali(function (data) { - var call = form.dataset.callable || '_default_callable'; - var type = form.method || 'POST', tips = form.dataset.tips || undefined; - var time = form.dataset.time || undefined, href = form.action || location.href; - $.form.load(href, data, type, window[call] || undefined, true, tips, time); + var type = form.method || 'POST', href = form.action || location.href; + var call = window[form.dataset.callable || '_default_callable'] || undefined; + var tips = form.dataset.tips || undefined, time = form.dataset.time || undefined; + (function (confirm, callable) { + confirm ? $.msg.confirm(confirm, callable) : callable(); + })(form.dataset.confirm, function () { + $.form.load(href, data, type, call, true, tips, time); + }); }); }); };