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

40 lines
563 B
TypeScript
Raw Normal View History

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