mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-14 17:01:14 +08:00
c8c4b6efa3
* 文档优化 * 文档细节调整,删除示例的 height 设置,使用自动撑开 * sdk 使用完整例子,因为新版没发布 * 修复官网语言不正确问题 * 增加 icon 调整颜色及大小的例子 * 修复文字错误 * 补充 each 的文档 * 修复 zh-CN 大写问题
2.1 KiB
Executable File
2.1 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
Panel 面板 | 0 | null | Panel | 34 |
展现上将多个 表单项 放同一个容器下。
基本用法
{
"type": "form",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm",
"controls": [
{
"type": "panel",
"controls": [
{
"name": "text",
"type": "text",
"label": "text"
},
{
"name": "text2",
"type": "text",
"label": "text2"
}
]
}
]
}
属性表
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
title | string |
panel 标题 | |
body | SchemaNode | 内容区 | |
bodyClassName | string |
body 的 className | |
footer | SchemaNode | 底部区 | |
footerClassName | string |
footer 的 className | |
controls | Array<表单项> | controls 跟 body 二选一,如果设置了 controls 优先显示表单集合。 |
title
panel 标题body
SchemaNode 可以是其他渲染模型。bodyClassName
body 的 className.footer
SchemaNode 可以是其他渲染模型。footerClassName
footer 的 className.controls
跟body
二选一,如果设置了 controls 优先显示表单集合。