From 4e46bbac8454107182c17eef16839349240ffc35 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 18 Dec 2025 11:36:50 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E6=A0=87=E5=87=86-NM=20DICOM=E5=B7=A5=E5=85=B7=E5=8F=AF?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=B5=8B=E9=87=8F=E6=A0=87=E6=B3=A8=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=EF=BC=8C=E5=BD=B1=E5=83=8F=E6=A0=87=E8=AE=B0=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E4=B8=8ECRF=E9=97=AE=E9=A2=98=E5=85=B3=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/reading/dicoms3D/components/ReadPage.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue index 6f99003e..88689e51 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -2741,6 +2741,9 @@ export default { const studyList = this.visitTaskList[i].StudyList let series = this.getMarkedSeries(studyList, obj.annotation, true) if (series) { + if (this.isFusion && series.SeriesInstanceUid !== this.fusionSerieId.ct && series.SeriesInstanceUid !== this.fusionSerieId.pt) { + return await this.$confirm(this.$t('trials:reading:confirm:fusionPTOrCTInconsistent')) + } this.activeViewportIndex = this.cells.length - 1 if (obj.annotation.from === 'MPR') { let viewPlaneNormal = obj.annotation?.metadata?.viewPlaneNormal.map(i => i == 0 ? 0 : i).join(',')