mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: 修复单次上传文件限制
--bug=1049382 --user=刘瑞斌 【应用编排】文件上传,单词上传最多文件数没限制住 https://www.tapd.cn/57709429/s/1615405
This commit is contained in:
parent
1b87f98874
commit
91633b58b8
|
|
@ -209,7 +209,9 @@ const getAcceptList = () => {
|
|||
|
||||
const uploadFile = async (file: any, fileList: any) => {
|
||||
const { maxFiles, fileLimit } = props.applicationDetails.file_upload_setting
|
||||
if (fileList.length > maxFiles) {
|
||||
// 单次上传文件数量限制
|
||||
const file_limit_once = uploadImageList.value.length + uploadDocumentList.value.length
|
||||
if (file_limit_once >= maxFiles) {
|
||||
MsgWarning('最多上传' + maxFiles + '个文件')
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue