From 2aa2d0be2d64f613bc709ee5d670df8003726123 Mon Sep 17 00:00:00 2001 From: yujh_java Date: Fri, 23 May 2025 16:19:08 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=84=E4=BB=B6=E4=B8=8A=E4=BC=A0=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F=E8=B0=83=E6=95=B4=E8=87=B3200M?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/designer/extend/js/designer.extend.link.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js index c018cf16..30065bd8 100755 --- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js +++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js @@ -4622,7 +4622,7 @@ function addShapeFile() { filesToFilter: [["Images (*.jpg; *.jpeg; *.gif; *.png; *.bmp)", "*.jpg; *.jpeg; *.gif; *.png; *.bmp; *.pdf; *.doc; *.docx; *.xls; *.xlsx; *.ppt; *.pptx; *.txt"]], repositoryName: "tmp", numLimit: 0, - sizeLimit: 10 * 1024 * 1024, + sizeLimit: 200 * 1024 * 1024, complete: function () { //事件回调函数 $.simpleAlert('close'); @@ -4631,7 +4631,7 @@ function addShapeFile() { add: function (e, data) { //附件被添加到上传列表时触发,当返回false时,可阻止上传 if (data.files.length == 0) { return false; - } else if (data.files[0].size > 10 * 1024 * 1024) { + } else if (data.files[0].size > 200 * 1024 * 1024) { $.simpleAlert("文件过大"); return false; } @@ -4808,7 +4808,7 @@ function addPolicyFile() { filesToFilter: [["Document(*.xml;*.doc;*.docx;)", "*.xml;*.doc;*.docx;"]], repositoryName: "migration", numLimit: 1, - sizeLimit: 50 * 1024 * 1024, + sizeLimit: 200 * 1024 * 1024, complete: function () { //事件回调函数 $.simpleAlert('close'); @@ -4817,7 +4817,7 @@ function addPolicyFile() { add: function (e, data) { //附件被添加到上传列表时触发,当返回false时,可阻止上传 if (data.files.length == 0) { return false; - } else if (data.files[0].size > 50 * 1024 * 1024) { + } else if (data.files[0].size > 200 * 1024 * 1024) { $.simpleAlert("文件过大"); return false; }