MaxKB/ui/src/components/dynamics-form/constructor/data.ts

40 lines
563 B
TypeScript

const input_type_list = [
{
label: '文本框',
value: 'TextInput'
},
{
label: '滑块',
value: 'Slider'
},
{
label: '开关',
value: 'SwitchInput'
},
{
label: '单选框',
value: 'SingleSelect'
},
{
label: '多选框',
value: 'MultiSelect'
},
{
label: '日期',
value: 'DatePicker'
},
{
label: 'JSON文本框',
value: 'JsonInput'
},
{
label: '选项卡',
value: 'RadioCard'
},
{
label: '单行选项卡',
value: 'RadioRow'
}
]
export { input_type_list }