feat: 还原修改成组旋转的问题,优化预览放大的交互

This commit is contained in:
奔跑的面条 2023-07-08 21:33:50 +08:00
parent 9127e6f44c
commit d0d031d1bb
2 changed files with 6 additions and 1 deletions

View File

@ -46,11 +46,14 @@ const props = defineProps({
required: true
},
groupIndex: {
type: [String, Number],
type: Number,
required: true
}
})
</script>
<style lang="scss" scoped>
.chart-item {
position: absolute;
}
</style>

View File

@ -23,6 +23,8 @@ export const useScale = (localStorageInfo: ChartEditStorageType) => {
e.preventDefault()
e.stopPropagation()
removeEvent()
const fitDom = document.querySelector(".go-preview.fit") as HTMLElement
if (fitDom) fitDom.style.overflow = 'auto'
const transform = previewRef.value.style.transform
// 使用正则解析 scale(1, 1) 中的两个数值
const regRes = transform.match(/scale\((\d+\.?\d*)*/) as RegExpMatchArray