From 13cfcb0935453cc177370ece7fc385abf9bae664 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 17 Jul 2025 11:05:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=A0=87=E8=AE=B0=E7=9A=84?= =?UTF-8?q?=E6=97=B6=E5=80=99=20=E6=9C=89markid=E7=9A=84=E6=97=B6=E5=80=99?= =?UTF-8?q?=20=E4=BC=A0markid=20=20=E6=B2=A1markid=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=20=E4=BC=A0id?= 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, 6 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 a8b68e57..df4a38e3 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -1055,6 +1055,7 @@ export default { i.MeasureData = JSON.parse(i.MeasureData) if (this.criterionType === 0) { i.MeasureData.id = i.Id + i.MeasureData.markId = i.MarkId } annotationUIDs.push(i.MeasureData.annotationUID) } @@ -1589,6 +1590,7 @@ export default { params.MarkId = annotation.annotationUID const res = await submitCustomTag(params) annotation.id = res.Result + annotation.markId = params.MarkId }) } catch (e) { @@ -1655,8 +1657,8 @@ export default { annotation.data.label + '?' ) - if (annotation.annotationUID) { - deleteCustomTag(annotation.annotationUID) + if (annotation.markId) { + deleteCustomTag(annotation.markId) }else if (annotation.id) { deleteCustomTag(annotation.id) } @@ -1727,6 +1729,7 @@ export default { i.MeasureData = JSON.parse(i.MeasureData) if (this.criterionType === 0) { i.MeasureData.id = i.Id + i.MeasureData.markId = i.MarkId } annotationUIDs.push(i.MeasureData.annotationUID) } @@ -1752,6 +1755,7 @@ export default { i.MeasureData = JSON.parse(i.MeasureData) if (this.criterionType === 0) { i.MeasureData.id = i.Id + i.MeasureData.markId = i.MarkId } } return i