基于Ant Design 和 jQuery UI 的表单设计器
github 地址
概念
- Comonent 组件
- Layout 布局,一种特殊的Component
- Component Editor 组件属性编辑器
- Component Factory 组件工厂,创建Component 和 Component Editor
扩展组件
创建一个组件
组件的定义是通过this.props.definition来传递的。definition的格式如下:
{
type: 'Checkbox', // 必须存在
title: '多选框', // 必须存在
props:{
'columnNum':2
},
children:[// 只有在Layout 中出现该属性
componentDefinition,
...
]
}
在t