From a2668b39becbbb2dd8d8c71024f5d2de565d68ef Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 26 May 2026 10:19:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E5=88=86=E9=97=AE=E9=A2=98=E8=A7=A3?= =?UTF-8?q?=E5=86=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dicom/DicomCanvas.vue | 13 ++++++++-- src/components/Dicom/DicomViewer.vue | 26 +++++++++---------- .../research/components/EquipmentForm.vue | 2 +- .../dicoms3D/components/Segmentations.vue | 16 ++++++++++-- 4 files changed, 39 insertions(+), 18 deletions(-) diff --git a/src/components/Dicom/DicomCanvas.vue b/src/components/Dicom/DicomCanvas.vue index 76a51e54..b0fdab35 100644 --- a/src/components/Dicom/DicomCanvas.vue +++ b/src/components/Dicom/DicomCanvas.vue @@ -6,6 +6,7 @@
Series #{{ dicomInfo.series }}
Image #{{ dicomInfo.frame }}
{{ dicomInfo.modality }}
+
{{ tip }}
@@ -33,17 +33,17 @@
- +
- +
- +
@@ -51,17 +51,17 @@
- +
- +
- +
@@ -69,17 +69,17 @@
- +
- +
- +
@@ -488,7 +488,7 @@ export default { }, computed: { isMultiple() { - return this.series?.instanceInfoList[0]?.NumberOfFrames > 0 + return this.series?.instanceInfoList[0]?.NumberOfFrames > 1 } }, mounted() { @@ -562,8 +562,8 @@ export default { ], imageIds: [newImageId] }, serie) - this.$refs[`dicomCanvas0`].loadImageStack(dicomCanvas0_info) - this.$refs[`dicomCanvas1`].loadImageStack(dicomCanvas1_info) + this.$refs[`dicomCanvas0`].loadImageStack(dicomCanvas0_info, this.$t('DicomViewer:anonymous:before')) + this.$refs[`dicomCanvas1`].loadImageStack(dicomCanvas1_info, this.$t('DicomViewer:anonymous:after')) }) } else { this.isComparison = f diff --git a/src/views/research/components/EquipmentForm.vue b/src/views/research/components/EquipmentForm.vue index f039f280..2f645ebb 100644 --- a/src/views/research/components/EquipmentForm.vue +++ b/src/views/research/components/EquipmentForm.vue @@ -1,5 +1,5 @@