1
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-11-24 14:48:14 +08:00
parent cc10f961c8
commit af882fede8
1 changed files with 2 additions and 2 deletions

View File

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