From 273932f9ccd574d280a47b7a07c59fddcd242ed0 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 30 Oct 2025 14:32:33 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=87=AA=E5=AE=9A=E4=B9=89dicom?= =?UTF-8?q?=E3=80=91=E8=A1=A8=E6=A0=BC=E6=95=B0=E5=80=BC=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E6=A0=87=E8=AE=B0=E5=90=8E=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dicoms3D/components/customize/QuestionList.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue index 245a8aa9..1108fd44 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue @@ -600,12 +600,15 @@ export default { QuestionId: obj.question.ParentQsId, ...(annotation ? { StudyId: annotation.studyId, - MarkTool: annotation.markTool, + MarkTool: annotation.markTool || '', MeasureData: JSON.stringify(annotation), - OrderMarkName: annotation.data.label, + OrderMarkName: annotation.data.label || '', NoneDicomFileId: annotation.noneDicomFileId, - } : {}), - Path: annotation.path, + } : { + MarkTool: '', + OrderMarkName: '' + }), + Path: annotation.path || '', PicturePath: picturePath ? picturePath : '', QuestionType: 0, RowId: this.operateRowId,