feat:新增层级移动功能

This commit is contained in:
MTrun
2022-02-01 20:57:54 +08:00
parent 917772cce0
commit ded1f8ae4b
3 changed files with 68 additions and 15 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
import { CreateComponentType } from '@/packages/index.d'
// 编辑画布属性
export enum EditCanvasTypeEnum {
EDIT_LAYOUT_DOM = 'editLayoutDom',
@@ -67,5 +69,5 @@ export interface chartEditStoreType {
[ChartEditStoreEnum.RIGHT_MENU_SHOW]: boolean
[ChartEditStoreEnum.MOUSE_POSITION]: MousePositionType
[ChartEditStoreEnum.TARGET_CHART]: TargetChartType
[ChartEditStoreEnum.COMPONENT_LIST]: any[]
[ChartEditStoreEnum.COMPONENT_LIST]: CreateComponentType[]
}