refactor: 大屏编辑预览状态禁用鼠标比例伸缩功能

This commit is contained in:
wangjiahao 2023-11-21 11:12:40 +08:00
parent 59c6793b04
commit 167f708ee6

View File

@ -6,7 +6,7 @@ import { snapshotStoreWithOut } from '@/store/modules/data-visualization/snapsho
import { changeSizeWithScale } from '@/utils/changeComponentsSizeWithScale'
import { useEmitt } from '@/hooks/web/useEmitt'
const dvMainStore = dvMainStoreWithOut()
const { canvasStyleData } = storeToRefs(dvMainStore)
const { canvasStyleData, editMode } = storeToRefs(dvMainStore)
const snapshotStore = snapshotStoreWithOut()
const scale = ref(60)
@ -42,6 +42,9 @@ const reposition = () => {
let lastWheelNum = 0
const handleMouseWheel = e => {
if (editMode.value === 'preview') {
return
}
let dvMain = document.getElementById('dv-main-center')
let dvMainLeftSlide = document.getElementById('dv-main-left-sidebar')
let areaLeftWidth = dvMainLeftSlide.clientWidth