From face77f949ee36606b0911cca7cd528b15d5574b Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 21 Jul 2025 14:14:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E8=AE=B0=E5=88=A0=E9=99=A4=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/reading/dicoms3D/components/ReadPage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 cbb79b7f..72f555fc 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -1657,13 +1657,13 @@ export default { annotation.data.label + '?' ) - let res = null if (annotation.markId) { - res = await deleteCustomTag(annotation.markId) + let res = await deleteCustomTag(annotation.markId) + if (!res.IsSuccess) return false }else if (annotation.id) { - res = await deleteCustomTag(annotation.id) + let res = await deleteCustomTag(annotation.id) + if (!res.IsSuccess) return false } - if (!res.isSuccess) return false } const index = this.markedSeriesIds.indexOf(annotation.seriesId) if (index !== -1) {