fix: 修复单次上传文件限制
--bug=1049382 --user=刘瑞斌 【应用编排】文件上传,单词上传最多文件数没限制住 https://www.tapd.cn/57709429/s/1615405v3.2
parent
91633b58b8
commit
cfb8e837ff
|
|
@ -213,6 +213,7 @@ const uploadFile = async (file: any, fileList: any) => {
|
||||||
const file_limit_once = uploadImageList.value.length + uploadDocumentList.value.length
|
const file_limit_once = uploadImageList.value.length + uploadDocumentList.value.length
|
||||||
if (file_limit_once >= maxFiles) {
|
if (file_limit_once >= maxFiles) {
|
||||||
MsgWarning('最多上传' + maxFiles + '个文件')
|
MsgWarning('最多上传' + maxFiles + '个文件')
|
||||||
|
fileList.splice(0, fileList.length)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (fileList.filter((f: any) => f.size > fileLimit * 1024 * 1024).length > 0) {
|
if (fileList.filter((f: any) => f.size > fileLimit * 1024 * 1024).length > 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue