mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:48:55 +08:00
65ac422ed6
* 补充容错 * fix: form 中 name 关联顶层数据初始化失效 * 更新 examples * 文档调整 * 删除多余的文档, 调整 schema * schema 调整 * schema 调整 * control 类型容器 control 改成 body * 修复一个选项加载的bug * form 注册直接用 type
49 lines
950 B
JavaScript
49 lines
950 B
JavaScript
export default {
|
|
type: 'page',
|
|
title: '表单中选项卡分组',
|
|
subTitle: '',
|
|
body: [
|
|
'<p>多个 controls 可以通过 tabs 来分组展示,表单将作为一个整体提交。</p>',
|
|
{
|
|
type: 'form',
|
|
title: '',
|
|
tabs: [
|
|
{
|
|
title: '选项卡1',
|
|
hash: 'tab1',
|
|
body: [
|
|
{
|
|
type: 'input-text',
|
|
label: '文本1',
|
|
name: 'a'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: '选项卡2',
|
|
hash: 'tab2',
|
|
body: [
|
|
{
|
|
type: 'input-text',
|
|
label: '文本2',
|
|
name: 'b'
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
title: '选项卡3',
|
|
hash: 'tab3',
|
|
body: [
|
|
{
|
|
type: 'input-text',
|
|
label: '文本3',
|
|
name: 'c'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|