fix: 思维导图缩放后无法触发手指移动

This commit is contained in:
kuaifan 2023-11-09 00:32:34 +08:00
parent 83a501b69f
commit 4e8239377f
2 changed files with 14 additions and 1 deletions

View File

@ -142,7 +142,7 @@ services:
minder:
container_name: "dootask-minder-${APP_ID}"
image: "kuaifan/minder:0.1.1"
image: "kuaifan/minder:0.1.3"
networks:
extnetwork:
ipv4_address: "${APP_IPPR}.10"

View File

@ -267,6 +267,19 @@
command,
value
})
if (command === 'goCenter' || command === 'removeAllSelected') {
return
}
setTimeout(_ => {
if (this.isHand) {
this.$refs.frame.postMessage({
app: 'minder',
action: 'commandAlways',
command: 'Hand',
value
})
}
}, 300)
},
exportHandle(type, filename) {