UNPKG

form-tdesigner

Version:

好用的Vue低代码可视化表单设计器,可以通过拖拽的方式快速创建表单,提高开发者对表单的开发效率。

59 lines (56 loc) 1.94 kB
import uniqueId from '@form-create/utils/lib/unique'; import {localeProps, makeTreeOptions, makeTreeOptionsRule} from '../../utils'; const label = '穿梭框'; const name = 'elTransfer'; export default { menu: 'main', icon: 'icon-transfer', label, name, event: ['change', 'leftCheckChange', 'rightCheckChange'], validate: ['string', 'number', 'array'], rule({t}) { return { type: name, field: uniqueId(), title: t('com.elTransfer.name'), info: '', $required: false, props: { data: makeTreeOptions(t('props.option'), {label: 'label', value: 'key'}, 1) } }; }, props(_, {t}) { return localeProps(t, name + '.props', [ makeTreeOptionsRule(t, 'props.data', 'label', 'key'), {type: 'switch', field: 'filterable'}, { type: 'input', field: 'filterPlaceholder' }, { type: 'select', field: 'targetOrder', info: t('com.elTransfer.targetOrderInfo'), options: [{label: 'original', value: 'original'}, { label: 'push', value: 'push' }, {label: 'unshift', value: 'unshift'}] }, { type: 'TableOptions', field: 'titles', props: { column: [{label: t('props.value'), key: 'value'}], valueType: 'string', max: 2, } }, { type: 'TableOptions', field: 'buttonTexts', props: { column: [{label: t('props.value'), key: 'value'}], valueType: 'string', max: 2, } }]); } };