mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-15 17:31:18 +08:00
2.9 KiB
Executable File
2.9 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
SubForm 子表单 | 0 | null | SubForm 子表单 | 50 |
基本用法
{
"type": "form",
"debug": true,
"controls": [
{
"type": "form",
"name": "form",
"label": "子Form",
"btnLabel": "设置子表单",
"form": {
"title": "配置子表单",
"controls": [
{
"name": "a",
"label": "A",
"type": "text"
},
{
"name": "b",
"label": "B",
"type": "text"
}
]
}
}
]
}
多选模式
可以配置"multiple": true
,实现多选模式
{
"type": "form",
"debug": true,
"controls": [
{
"type": "form",
"name": "form2",
"label": "多选",
"multiple": true,
"maxLength": 3,
"btnLabel": "设置子表单",
"form": {
"title": "配置子表单",
"controls": [
{
"name": "a",
"label": "A",
"type": "text"
},
{
"name": "b",
"label": "B",
"type": "text"
}
]
}
}
]
}
属性表
除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
multiple | boolean |
false |
是否为多选模式 |
labelField | string |
当值中存在这个字段,则按钮名称将使用此字段的值来展示。 | |
btnLabel | string |
"设置" |
按钮默认名称 |
minLength | number |
0 |
限制最小长度。 |
maxLength | number |
0 |
限制最大长度。 |
addButtonClassName | string |
btn-success btn-sm |
新增按钮 CSS 类名 |
editButtonClassName | string |
btn-info btn-addon btn-sm |
修改按钮 CSS 类名 |
form | Form | 子表单配置,同 Form |