资料关闭完成

This commit is contained in:
2026-09-17 13:25:39 +08:00
parent 79ab4b9b9f
commit 4b31fbc3f1
13 changed files with 1455 additions and 68 deletions
@@ -392,7 +392,7 @@ const onUploadFile = async (e:any) => {
if (!file) return;
const formData = new FormData();
formData.append('file', file);
formData.append('step', '2');
formData.append('step', '1');
uploadLoading.value = true;
const {data,error} = await uploadFileApi(props.currentId, formData);
if(!error){
+1 -1
View File
@@ -119,7 +119,7 @@ const uploadFile = async (e: any) => {
if (!file) return;
const formData = new FormData();
formData.append('file', file);
formData.append('step', '5');
formData.append('step', '4');
uploadLoading.value = true;
const {error} = await uploadFileApi(props.currentId, formData);
if(!error){