From ff5b947dc98021f1ceca9da105e888cf370cf191 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=99=93=E7=90=AA?= Date: Thu, 18 Aug 2022 17:40:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E7=94=9F=E4=BF=A1=E6=81=AF=E5=AE=8C?= =?UTF-8?q?=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/learun-mpui/learun-ui-mp/upload.vue | 4 ++-- .../LearunApp-2.2.0/components/upload-file.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-mp/upload.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-mp/upload.vue index f615e5f06..e6ec87c13 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-mp/upload.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-mp/upload.vue @@ -206,10 +206,10 @@ export default { return false } let size = array.every(item=>{ - return item.size && item.size <= 2 * 1024 * 1024 + return item.size && item.size <= 100 * 1024 * 1024 }) if(!size){ - this.TOAST('文件大小不得超过2M'); + this.TOAST('文件大小不得超过100M'); return false } return true diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/upload-file.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/upload-file.vue index f10c9e3f2..7cc779f0f 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/upload-file.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/upload-file.vue @@ -229,10 +229,10 @@ export default { // return false // } let size = array.every(item=>{ - return item.size && item.size <= 10 * 1024 * 1024 + return item.size && item.size <= 200 * 1024 * 1024 }) if(!size){ - this.TOAST('文件大小不得超过10M'); + this.TOAST('文件大小不得超过200M'); return false } return true