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 }