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