From ac587fad30699924af01939ed1dd7dd082e84199 Mon Sep 17 00:00:00 2001 From: danshihao Date: Mon, 12 Aug 2024 09:03:46 +0800 Subject: [PATCH] =?UTF-8?q?[update=2088300]=20=E5=88=A0=E9=99=A4=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E7=BA=A2=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/InterpretationClauseTable.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue index eba15fe..74276d6 100644 --- a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue +++ b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue @@ -57,7 +57,7 @@ @@ -578,9 +578,9 @@ export default { * @param info */ handleImport (info) { - // 限制导入大于500MB - if (info.file.size > 1024 * 1024 * 500) { - this.$message.error('导入文件最大500MB!') + // 限制导入大于20MB + if (info.file.size > 1024 * 1024 * 20) { + this.$message.error(this.$t('importMaxMsg', { size: '20MB' })) info.fileList.pop() return }