影像视角信息slice location保留两位小数
parent
23f2ea7a3f
commit
a487d4d82c
|
@ -400,7 +400,7 @@ export default {
|
|||
this.dicomInfo.zoom = viewport.scale.toFixed(4)
|
||||
var data = e.detail.image.data
|
||||
const position = data.string('x00201041')
|
||||
this.dicomInfo.location = position
|
||||
this.dicomInfo.location = parseFloat(position).toFixed(2)
|
||||
},
|
||||
getOrientationMarker(element) {
|
||||
const enabledElement = cornerstone.getEnabledElement(element)
|
||||
|
|
Loading…
Reference in New Issue