From c5c9e4364c8db55a80465f7f02f84ce541e1f989 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 30 Mar 2026 17:17:17 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90dicom=E5=88=86=E5=89=B2=E3=80=91?= =?UTF-8?q?=E5=88=86=E6=AE=B5=E8=8F=9C=E5=8D=95=E6=8C=89=E9=92=AE=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E5=90=8E=EF=BC=8C=E5=86=8D=E7=82=B9=E5=87=BB=E5=8F=A6?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E5=88=86=E6=AE=B5=E8=8F=9C=E5=8D=95=E6=8C=89?= =?UTF-8?q?=E9=92=AE=EF=BC=8C=E4=B8=8A=E4=B8=80=E4=B8=AA=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E7=9A=84=E5=BC=B9=E7=AA=97=E5=BA=94=E8=AF=A5=E6=B6=88=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/Segmentations.vue | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue index 06f0e03c..60ed03ee 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue @@ -205,7 +205,9 @@ - +
{{ $t('trials:reading:Segmentations:button:renameSegmentGroup') }} @@ -352,7 +354,8 @@ export default { drawing: false, // 是否正在分割 isDel: false, digitPlaces: 2, - isloaded: false + isloaded: false, + popoverId: null } }, mounted() { @@ -376,6 +379,9 @@ export default { }) const digitPlaces = Number(localStorage.getItem('digitPlaces')) this.digitPlaces = digitPlaces === -1 ? this.digitPlaces : digitPlaces + // document.addEventListener("click", () => { + // this.popoverId = null + // }); }, computed: { curSegmentGroup() { @@ -411,6 +417,9 @@ export default { } }, methods: { + handleClickPopover(item) { + this.popoverId = `popover-${item.segmentationId}_${item.segmentIndex}` + }, initThreshold() { if (!this.ThresholdTools.includes(this.activeTool)) { this.setToolActive(this.ThresholdTools[0])