From bb3a90d28a0c456ec5951c7620c59c63e7245091 Mon Sep 17 00:00:00 2001 From: yasuo <184249652@qq.com> Date: Thu, 16 Nov 2023 11:57:54 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E7=94=B1=E4=BA=8E=E6=99=AE?= =?UTF-8?q?=E9=80=9A=E4=B8=8A=E4=BC=A0=E5=92=8C=E7=A7=92=E4=BC=A0=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E6=A0=BC=E5=BC=8F=E4=B8=8D=E7=BB=9F=E4=B8=80=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E7=9A=84=E5=88=9D=E6=AC=A1=E4=B8=8A=E4=BC=A0=E5=BF=85?= =?UTF-8?q?=E7=84=B6=E5=A4=B1=E8=B4=A5=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/view/api/upload.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/admin/view/api/upload.js b/app/admin/view/api/upload.js index f1e7adb17..ba2ad2520 100644 --- a/app/admin/view/api/upload.js +++ b/app/admin/view/api/upload.js @@ -188,7 +188,13 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) { }); } else if (parseInt(ret.code) === 200) { (file.xurl = ret.data.url), that.progress('100.00', file); - that.done({code: 1, url: file.xurl, info: file.xstats}, file.index, file, done, '{:lang("文件秒传成功!")}'); + that.done({ + code: 1, + info: '{:lang("文件秒传成功!")}', + data: { + url: file.xurl, + } + }, file.index, file, done, '{:lang("文件秒传成功!")}'); } else { that.event('upload.error', {file: file}, file, ret.info || ret.error.message || '{:lang("文件上传出错!")}'); }