V0.34
This commit is contained in:
parent
e6f6e85127
commit
7d6161e0a1
@ -145,7 +145,7 @@ export default {
|
|||||||
fileName: 'Program Name',
|
fileName: 'Program Name',
|
||||||
fileEditTip:
|
fileEditTip:
|
||||||
'The file name cannot be empty and the file format cannot be modified',
|
'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!',
|
fileTypeTip: 'The uploaded file can only be in MP3 format!',
|
||||||
updateFileTypeTip: 'The uploaded file can only be in Bin format!',
|
updateFileTypeTip: 'The uploaded file can only be in Bin format!',
|
||||||
fileSurplusSizeTip: 'Insufficient remaining storage space!',
|
fileSurplusSizeTip: 'Insufficient remaining storage space!',
|
||||||
|
|||||||
@ -137,7 +137,7 @@ export default {
|
|||||||
upload: '上传',
|
upload: '上传',
|
||||||
fileName: '节目名称',
|
fileName: '节目名称',
|
||||||
fileEditTip: '文件名称不能为空且文件格式不可修改',
|
fileEditTip: '文件名称不能为空且文件格式不可修改',
|
||||||
fileSizeTip: '上传文件大小不能超过 5MB!',
|
fileSizeTip: '上传文件大小不能超过 40MB!',
|
||||||
fileTypeTip: '上传文件只能是mp3格式!',
|
fileTypeTip: '上传文件只能是mp3格式!',
|
||||||
updateFileTypeTip: '上传文件只能是bin格式!',
|
updateFileTypeTip: '上传文件只能是bin格式!',
|
||||||
fileSurplusSizeTip: '剩余存储空间不足!',
|
fileSurplusSizeTip: '剩余存储空间不足!',
|
||||||
|
|||||||
@ -103,7 +103,7 @@ export default {
|
|||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (files.size / 1024 / 1024 > 5) {
|
if (files.size / 1024 / 1024 > 40) {
|
||||||
this.$message({
|
this.$message({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: this.$i18n.t('table.fileSizeTip')
|
message: this.$i18n.t('table.fileSizeTip')
|
||||||
|
|||||||
@ -253,7 +253,7 @@ export default {
|
|||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (files.size / 1024 / 1024 > 5) {
|
if (files.size / 1024 / 1024 > 40) {
|
||||||
this.$message({
|
this.$message({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: this.$i18n.t('table.fileSizeTip')
|
message: this.$i18n.t('table.fileSizeTip')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user