【自定义非dicom】标记已与问题绑定,删除比例尺后,问题中的值应该恢复为px
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-10-30 15:04:28 +08:00
parent 273932f9cc
commit 199fe6aed3
1 changed files with 4 additions and 4 deletions

View File

@ -1008,11 +1008,11 @@ export default {
let res = await deleteTrialFileType(annotation.id)
if (!res.IsSuccess) throw ''
}
let psIndex = this.psArr.findIndex(item => item.Path === annotation.path)
if (psIndex > -1) {
this.psArr.splice(psIndex, 1)
}
if (annotation.metadata.toolName === 'Lengthscale') {
let psIndex = this.psArr.findIndex(item => item.Path === annotation.path)
if (psIndex > -1) {
this.psArr.splice(psIndex, 1)
}
this.$emit('getEcrf', { type: "changePlottingScaleChangeAnswer", VisitTaskId: this.taskInfo.VisitTaskId, noneDicomFileId: annotation.noneDicomFileId, path: annotation.path || '', picturePath: null, psArr: this.psArr, isRemovePlottingScale: false })
this.setToolsPassive()
}