This commit is contained in:
qingjiao 2024-12-20 15:09:26 +08:00
parent e6f6e85127
commit 7d6161e0a1
4 changed files with 4 additions and 4 deletions

View File

@ -145,7 +145,7 @@ export default {
fileName: 'Program Name',
fileEditTip:
'The file name cannot be empty and the file format cannot be modified',
fileSizeTip: 'The uploaded file size cannot exceed 5MB!',
fileSizeTip: 'The uploaded file size cannot exceed 40MB!',
fileTypeTip: 'The uploaded file can only be in MP3 format!',
updateFileTypeTip: 'The uploaded file can only be in Bin format',
fileSurplusSizeTip: 'Insufficient remaining storage space',

View File

@ -137,7 +137,7 @@ export default {
upload: '上传',
fileName: '节目名称',
fileEditTip: '文件名称不能为空且文件格式不可修改',
fileSizeTip: '上传文件大小不能超过 5MB!',
fileSizeTip: '上传文件大小不能超过 40MB!',
fileTypeTip: '上传文件只能是mp3格式',
updateFileTypeTip: '上传文件只能是bin格式',
fileSurplusSizeTip: '剩余存储空间不足!',

View File

@ -103,7 +103,7 @@ export default {
})
return
}
if (files.size / 1024 / 1024 > 5) {
if (files.size / 1024 / 1024 > 40) {
this.$message({
type: 'error',
message: this.$i18n.t('table.fileSizeTip')

View File

@ -253,7 +253,7 @@ export default {
})
return
}
if (files.size / 1024 / 1024 > 5) {
if (files.size / 1024 / 1024 > 40) {
this.$message({
type: 'error',
message: this.$i18n.t('table.fileSizeTip')