mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
65ac422ed6
* 补充容错 * fix: form 中 name 关联顶层数据初始化失效 * 更新 examples * 文档调整 * 删除多余的文档, 调整 schema * schema 调整 * schema 调整 * control 类型容器 control 改成 body * 修复一个选项加载的bug * form 注册直接用 type
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
export default {
|
|
title: 'SubForm 示例',
|
|
body: [
|
|
{
|
|
type: 'form',
|
|
api: '/api/mock2/saveForm?waitSeconds=2',
|
|
title: 'Form elements',
|
|
mode: 'horizontal',
|
|
// debug: true,
|
|
body: [
|
|
{
|
|
type: 'input-sub-form',
|
|
label: '子表单单条',
|
|
name: 'subForm1',
|
|
btnLabel: '点击设置${a}',
|
|
form: {
|
|
title: '子表单',
|
|
body: [
|
|
{
|
|
name: 'a',
|
|
type: 'input-text',
|
|
label: 'Foo'
|
|
},
|
|
{
|
|
name: 'b',
|
|
type: 'switch',
|
|
label: 'Boo'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
|
|
{
|
|
type: 'input-sub-form',
|
|
label: '子表单多条',
|
|
name: 'subForm2',
|
|
labelField: 'a',
|
|
btnLabel: '点击设置',
|
|
multiple: true,
|
|
form: {
|
|
title: '子表单',
|
|
body: [
|
|
{
|
|
name: 'a',
|
|
type: 'input-text',
|
|
label: 'Foo'
|
|
},
|
|
{
|
|
name: 'b',
|
|
type: 'switch',
|
|
label: 'Boo'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|