提交 0f2df138 authored 作者: 钟是志's avatar 钟是志

拖拽增加注释

上级 b8cc9b37
/**
* 钟是志
* 2020年5月28日 18:15:56
* 通过绑定3个事件 鼠标down 鼠标move 鼠标up 实现拖到
* 在down 的时候 注册 哪个配置项被点击
* 在move 的时候 计算偏移量 让鼠标的偏移量 和 配置项dom的偏移量一致
* 在up 的时候 更新元素dom的新位置到props
* */
import React, { Component, Fragment } from 'react';
import { queryConfig } from '../services';
import { getInfo } from '@/highOrderComponent/Service';
......@@ -72,7 +81,6 @@ export default class ViewPrint extends Component {
configAll: { config },
} = this.state;
const res = [];
console.log(config);
for (const item of config) {
res.push(
DetailDom({
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论