From d2e05408190986d328c30a6e81682fa269ce4418 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Wed, 8 May 2024 13:14:18 +0800 Subject: [PATCH] =?UTF-8?q?PCWG3=E9=98=85=E7=89=87=E6=A0=87=E5=87=86?= =?UTF-8?q?=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dicom-show/dicom-study.vue | 8 ++--- .../reading/dicoms/components/ReportPage.vue | 32 +++++++++++++++++-- 2 files changed, 33 insertions(+), 7 deletions(-) diff --git a/src/views/dicom-show/dicom-study.vue b/src/views/dicom-show/dicom-study.vue index 5434ada..38c0378 100644 --- a/src/views/dicom-show/dicom-study.vue +++ b/src/views/dicom-show/dicom-study.vue @@ -251,9 +251,9 @@ export default { let res = await getPatientSeriesList(this.studyId); if (res.IsSuccess && res.Result.length > 0) { console.log(res.Result) - this.modality = res.Result[0].Modality + this.modality = res.OtherInfo.Modalities this.seriesCount = res.Result.length - this.description = res.Result[0].Description + this.description = res.OtherInfo.Description this.seriesList = [] res.Result.map(item=>{ var imageIds = [] @@ -266,8 +266,8 @@ export default { seriesUid: item.SeriesInstanceUid, seriesNumber:item.SeriesNumber, sliceThickness: item.SliceThickness, - modality: this.modality, - description: this.description, + modality: item.Modality, + description: item.Description, previewImageUrl: item.ImageResizePath ? this.OSSclientConfig.basePath + item.ImageResizePath : item.ImageResizePath, instanceCount: item.InstanceCount, prefetchInstanceCount: 0, diff --git a/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue b/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue index 22c538d..5b7729b 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue @@ -96,7 +96,7 @@