This commit is contained in:
2025-09-09 09:12:18 +08:00
13 changed files with 189 additions and 154 deletions

View File

@ -203,6 +203,7 @@ watch(
});
} else {
fileList.value = [];
return [];
}
},
@ -293,7 +294,7 @@ const handleChange = (file: any, filelist: any) => {
}
}
// 记录 status = 'ready' 的文件
if (file.status === 'ready') {
if (file.status === 'ready' && !props.isConstruction) {
pendingFiles.value.push(file);
fileList.value = pendingFiles.value;
}