非dicom长短径工具与问题进行绑定值错误问题
continuous-integration/drone/push Build is passing Details

wangxiaoshuang 2026-02-02 14:06:04 +08:00
parent 5a8e1e5af7
commit 46b532b858
2 changed files with 2 additions and 2 deletions

View File

@ -1369,7 +1369,7 @@ export default {
} else if (prop === 'length' || prop === 'perimeter') {
value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces)
} else {
value = this.reRound(csUtils.roundNumber(value), this.digitPlaces)
value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces)
}
} else if (this.isNoneDicom && value !== null) {
value = this.reRound(csUtils.roundNumber(value), this.digitPlaces)

View File

@ -1061,7 +1061,7 @@ export default {
} else if (prop === 'length' || prop === 'perimeter') {
value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces)
} else {
value = this.reRound(csUtils.roundNumber(value), this.digitPlaces)
value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces)
}
} else if (this.isNoneDicom && value !== null) {
value = this.reRound(csUtils.roundNumber(value), this.digitPlaces)