main
parent
d6713ba9a4
commit
65d7a95d5f
|
|
@ -92,7 +92,10 @@
|
||||||
@click.stop
|
@click.stop
|
||||||
@contextmenu.prevent
|
@contextmenu.prevent
|
||||||
>
|
>
|
||||||
<div class="annotation-context-menu__item" @click.stop="copyCircleAnnotation()">复制</div>
|
<div class="annotation-context-menu__item" @click.stop="copyCircleAnnotation()">
|
||||||
|
<!-- 复制 -->
|
||||||
|
{{ $t('trials:reading:menu:copy') }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -262,25 +265,25 @@ export default {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
|
|
||||||
// const annotation = this.getCircleAnnotationFromContextMenuEvent(e)
|
const annotation = this.getCircleAnnotationFromContextMenuEvent(e)
|
||||||
// if (!annotation) {
|
if (!annotation) {
|
||||||
// this.hideAnnotationContextMenu()
|
this.hideAnnotationContextMenu()
|
||||||
// return false
|
return false
|
||||||
// }
|
}
|
||||||
|
|
||||||
// if (cornerstoneTools.annotation.locking.isAnnotationLocked(annotation.annotationUID)) {
|
if (cornerstoneTools.annotation.locking.isAnnotationLocked(annotation.annotationUID)) {
|
||||||
// this.hideAnnotationContextMenu()
|
this.hideAnnotationContextMenu()
|
||||||
// return false
|
return false
|
||||||
// }
|
}
|
||||||
|
|
||||||
// this.$emit('activeViewport', this.viewportIndex)
|
this.$emit('activeViewport', this.viewportIndex)
|
||||||
|
|
||||||
// const { x, y } = this.getContextMenuPosition(e)
|
const { x, y } = this.getContextMenuPosition(e)
|
||||||
// this.annotationContextMenu.visible = true
|
this.annotationContextMenu.visible = true
|
||||||
// this.annotationContextMenu.x = x
|
this.annotationContextMenu.x = x
|
||||||
// this.annotationContextMenu.y = y
|
this.annotationContextMenu.y = y
|
||||||
// this.annotationContextMenu.annotation = annotation
|
this.annotationContextMenu.annotation = annotation
|
||||||
// return false
|
return false
|
||||||
},
|
},
|
||||||
getContextMenuPosition(e) {
|
getContextMenuPosition(e) {
|
||||||
const rect = this.element?.getBoundingClientRect?.()
|
const rect = this.element?.getBoundingClientRect?.()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue