From d42f78b68b89d2fc289ae1fa14d03bead9707418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 1 Jul 2021 10:09:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/admin.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index 2d9b9e53a..5537852fd 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -536,9 +536,8 @@ $(function () { /*! 全局文件上传入口 */ $.fn.uploadFile = function (callable) { if (this.data('inited')) return false; - var that = this, mode = this.data('file') || 'one'; - this.data('inited', true).data('multiple', mode !== 'one' ? 1 : 0); - require(['upload'], function (apply) { + var that = this, mult = 'one|btn'.indexOf(this.data('file') || 'one') < 0 ? 1 : 0; + this.data('inited', true).data('multiple', mult), require(['upload'], function (apply) { apply.call(this, that, callable); }); };