下载路径修改
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-11-24 14:21:05 +08:00
parent 03f9435cb9
commit cc10f961c8
1 changed files with 2 additions and 2 deletions

View File

@ -349,7 +349,7 @@ export default {
if (study.StudyDIRPath && !study.dirHas) {
study.dirHas = true
let obj = {
name: `${study.PatientId}/${study.StudyTime.split(' ')[0]}_${str}/DICOMDIR`,
name: `${study.PatientId}/${study.StudyTime.split(' ')[0]}_${str}/${study.StudyInstanceUid}/DICOMDIR`,
url: this.OSSclientConfig.basePath + study.StudyDIRPath,
}
files.push(obj)
@ -363,7 +363,7 @@ export default {
series.InstanceList.forEach((instance) => {
let fileName = instance.FileName || instance.Path.split('/').pop()
let obj = {
name: `${study.PatientId}/${study.StudyTime.split(' ')[0]}_${str}/IMAGE/${fileName}`,
name: `${study.PatientId}/${study.StudyTime.split(' ')[0]}_${str}/${study.StudyInstanceUid}/IMAGE/${fileName}`,
url: this.OSSclientConfig.basePath + instance.Path,
}
files.push(obj)