From 3d0a3116e1553ed1ae1f095e3a86af2b872a0da0 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 17 Jul 2025 15:31:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=A0=87=E8=AE=B0=E6=97=B6?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=88=A4=E6=96=AD=E6=A0=87=E8=AE=B0=E4=B8=8E?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E6=98=AF=E5=90=A6=E6=9C=89=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E5=85=B3=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/reading/dicoms3D/components/ReadPage.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 df4a38e3..d9ac80f3 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -1657,11 +1657,13 @@ export default { annotation.data.label + '?' ) + let res = null if (annotation.markId) { - deleteCustomTag(annotation.markId) + res = await deleteCustomTag(annotation.markId) }else if (annotation.id) { - deleteCustomTag(annotation.id) + res = await deleteCustomTag(annotation.id) } + if (!res.isSuccess) return false } const index = this.markedSeriesIds.indexOf(annotation.seriesId) if (index !== -1) {