From cc10f961c8ede3ff7824fd83a6fe60d578c1e1c6 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 24 Nov 2025 14:21:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E8=B7=AF=E5=BE=84=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trials/trials-inspection/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-inspection/index.vue b/src/views/trials/trials-inspection/index.vue index 8a85dc2..4925b10 100644 --- a/src/views/trials/trials-inspection/index.vue +++ b/src/views/trials/trials-inspection/index.vue @@ -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)