diff --git a/src/components/flow/flowNodeParamTable.vue b/src/components/flow/flowNodeParamTable.vue index 632a1847..93aa30e0 100644 --- a/src/components/flow/flowNodeParamTable.vue +++ b/src/components/flow/flowNodeParamTable.vue @@ -420,6 +420,7 @@ const runUploadRunFilesFun = async (list: any, flag: any) => { sourceFiles, uploadTaskId: new Date().getTime(), dirId: props.pageInfo?.inputDirId, + isConverSameNameFile: true, }; const res: any = await uploadRunFilesApi(param); diff --git a/src/views/task/execution/components/runDetailPage/index.vue b/src/views/task/execution/components/runDetailPage/index.vue index c06c409e..b5eebf65 100644 --- a/src/views/task/execution/components/runDetailPage/index.vue +++ b/src/views/task/execution/components/runDetailPage/index.vue @@ -608,6 +608,7 @@ const runUploadRunFilesFun = async (list: any, inputDirId: any) => { sourceFiles, uploadTaskId: new Date().getTime(), dirId: inputDirId, + isConverSameNameFile: true, }; const res: any = await uploadRunFilesApi(param); diff --git a/src/views/task/execution/components/runDetailPage/runPagecomponent/runDataPage.vue b/src/views/task/execution/components/runDetailPage/runPagecomponent/runDataPage.vue index 286bb045..95d8aa36 100644 --- a/src/views/task/execution/components/runDetailPage/runPagecomponent/runDataPage.vue +++ b/src/views/task/execution/components/runDetailPage/runPagecomponent/runDataPage.vue @@ -168,6 +168,7 @@ const beforeUploadFun = async (file: any) => { sourceFiles, uploadTaskId: new Date().getTime(), dirId: props.fileId, + isConverSameNameFile: true, }; const res: any = await uploadRunFilesApi(param);