From af882fede8ebea463153e3d988406fcb898b1df9 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 24 Nov 2025 14:48:14 +0800 Subject: [PATCH] 1 --- 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 4925b10..a80c88f 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}/${study.StudyInstanceUid}/DICOMDIR`, + name: `${study.PatientId}/${study.StudyTime}_${str}/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}/${study.StudyInstanceUid}/IMAGE/${fileName}`, + name: `${study.PatientId}/${study.StudyTime}_${str}/IMAGE/${fileName}`, url: this.OSSclientConfig.basePath + instance.Path, } files.push(obj)