Merge pull request #6775 from dataease/pr@dev-v2@refactor_scale

refactor: 大屏编辑预览状态禁用鼠标比例伸缩功能
This commit is contained in:
王嘉豪 2023-11-21 11:13:35 +08:00 committed by GitHub
commit 36e4a28b47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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