From 3e19e85a8d864a14cd23cd1718f39e08c3523391 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 8 May 2026 15:00:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=A4=BA=E8=AF=AD=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E9=99=90=E5=88=B6=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/reading/dicoms3D/components/StudyList.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue index 198ec28d..d0070187 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue @@ -193,7 +193,7 @@ export default { methods: { activeSeries(series, seriesIndex, studyIndex) { const photometricInterpretation = series?.InstanceInfoList[0]?.PhotometricInterpretation; - if (!photometricInterpretation || (photometricInterpretation !== 'MONOCHROME1' && photometricInterpretation !== 'MONOCHROME2')) + if ((!photometricInterpretation || (photometricInterpretation !== 'MONOCHROME1' && photometricInterpretation !== 'MONOCHROME2')) && this.readingTool === 3) return this.$confirm(this.$t('trials:histogram:confirm:activeSeriesPhotometricInterpretationNotSupported')) this.$emit('activeSeries', series) this.activeStudyIndex = studyIndex @@ -335,6 +335,7 @@ export default { white-space: normal; overflow: visible; } + .study-meta-line { // display: grid; // grid-template-columns: minmax(0, 1fr) auto; @@ -344,6 +345,7 @@ export default { width: 100%; min-width: 0; } + .study-meta-main { display: block; min-width: 0; @@ -351,11 +353,13 @@ export default { overflow-wrap: anywhere; flex: 1; } + .study-code, .study-modality { white-space: normal; margin: 0 2px; } + .patient-info { display: inline-flex; align-items: center;