【自定义dicom】表格数值问题移除标记后保存报错
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-10-30 14:32:33 +08:00
parent 3832312041
commit 273932f9cc
1 changed files with 7 additions and 4 deletions

View File

@ -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,