This commit is contained in:
ljx
2025-09-09 10:00:56 +08:00
29 changed files with 997 additions and 923 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;
}

View File

@ -170,8 +170,6 @@ onMounted(() => {
//分页
const getWaitingList = () => {
pageByTaskWait({ pageNum: 1, pageSize: 10 }).then((resp) => {
console.log(resp);
total.value = resp.total;
});
};