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,