amis2/docs/zh-CN/components/form/subform.md

94 lines
2.8 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: SubForm 子表单
2020-07-29 16:20:21 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: null
menuName: SubForm 子表单
2020-07-29 16:20:21 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 50
---
2020-07-29 16:20:21 +08:00
2020-07-28 10:03:53 +08:00
## 基本用法
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"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`,实现多选模式
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"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"
}
]
}
}
]
}
```
2020-07-29 16:20:21 +08:00
2020-07-28 10:03:53 +08:00
## 属性表
除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置
2020-09-21 16:38:51 +08:00
| 属性名 | 类型 | 默认值 | 说明 |
| ------------------- | --------------- | --------------------------- | ------------------------------------------------------ |
| multiple | `boolean` | `false` | 是否为多选模式 |
| labelField | `string` | | 当值中存在这个字段,则按钮名称将使用此字段的值来展示。 |
| btnLabel | `string` | `"设置"` | 按钮默认名称 |
2020-10-14 12:17:11 +08:00
| minLength | `number` | `0` | 限制最小个数。 |
| maxLength | `number` | `0` | 限制最大个数。 |
2020-09-21 16:38:51 +08:00
| addButtonClassName | `string` | `btn-success btn-sm` | 新增按钮 CSS 类名 |
| editButtonClassName | `string` | `btn-info btn-addon btn-sm` | 修改按钮 CSS 类名 |
| form | [Form](./index) | | 子表单配置,同 [Form](./index) |