UNPKG

@form-create/vant-designer

Version:

基于Vant的移动端低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。

56 lines (53 loc) 1.42 kB
import uniqueId from '@form-create/utils/lib/unique'; import {localeProps, makeTreeOptions, makeTreeOptionsRule} from '../../utils/index'; const label = '级联选择器'; const name = 'cascader'; export default { menu: 'main', icon: 'icon-cascader', label, name, input: true, event: ['change', 'finish', 'close', 'clickTab'], validate: ['string', 'number'], rule({t}) { return { type: name, field: uniqueId(), title: t('com.cascader.name'), info: '', effect: { fetch: '' }, $required: false, props: { options: makeTreeOptions(t('props.option'), {label: 'text', value: 'value'}, 3) } }; }, props(_, {t}) { return localeProps(t, name + '.props', [ makeTreeOptionsRule(t, 'props.options', 'text'), { type: 'input', field: 'title', }, { type: 'input', field: 'placeholder', }, { type: 'switch', field: 'disabled', }, { type: 'switch', field: 'clearable', }, { type: 'ColorPicker', field: 'activeColor', }, ]); } };