mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:09:08 +08:00
0ae04ce946
* docs:将文档移动 zh-CN 目录下;为以后支持英文版做准备 * 整理 autoFill * 补充下载最新版本的说明 (#1298) * fix: 修复在新版 Firefox 下 js sdk 报错 (#1300) * 删掉可能报错的代码 (#1311) * fix: 修复 css 变量不支持数字问题 (#1302) * feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果 (#1303) * feat:增加 animation-duration,可以控制所有动画时长,也能用于一次性关闭所有动画效果 * 补充文档 * Pageleave (#1310) * form 添加页面离开提示功能 * 补充文档 Co-authored-by: 2betop <2betop.cn@gmail.com> Co-authored-by: liaoxuezhi <liaoxuezhi@baidu.com>
5.2 KiB
Executable File
5.2 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
Grid 网格 | 0 | null | Grid | 23 |
支持 Form 内部再用 grid 布局进行渲染组件。
基本用法
{
"type": "form",
"api": "https://houtai.baidu.com/api/mock2/form/saveForm",
"controls": [
{
"type": "grid",
"columns": [
{
"md": 3,
"controls": [
{
"name": "text",
"type": "text",
"label": "text"
}
]
},
{
"md": 9,
"controls": [
{
"name": "editor",
"type": "editor",
"label": "editor"
}
]
}
]
}
]
}
属性表
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
type | string |
"grid" |
指定为 Grid 渲染器 |
className | string |
外层 Dom 的类名 | |
columns | Array |
列集合 | |
columns[x] | SchemaNode | 成员可以是其他渲染器 | |
columns[x].controls | Array<表单项> | 如果配置了表单集合,同时没有指定 type 类型,则优先展示表单集合 | |
columns[x].columnClassName | int |
配置列的 className |
|
columns[x].xs | int |
宽度占比: 1 - 12 | |
columns[x].xsHidden | boolean |
是否隐藏 | |
columns[x].xsOffset | int |
偏移量 1 - 12 | |
columns[x].xsPull | int |
靠左的距离占比:1 - 12 | |
columns[x].xsPush | int |
靠右的距离占比: 1 - 12 | |
columns[x].sm | int |
宽度占比: 1 - 12 | |
columns[x].smHidden | boolean |
是否隐藏 | |
columns[x].smOffset | int |
偏移量 1 - 12 | |
columns[x].smPull | int |
靠左的距离占比:1 - 12 | |
columns[x].smPush | int |
靠右的距离占比: 1 - 12 | |
columns[x].md | int |
宽度占比: 1 - 12 | |
columns[x].mdHidden | boolean |
是否隐藏 | |
columns[x].mdOffset | int |
偏移量 1 - 12 | |
columns[x].mdPull | int |
靠左的距离占比:1 - 12 | |
columns[x].mdPush | int |
靠右的距离占比: 1 - 12 | |
columns[x].lg | int |
宽度占比: 1 - 12 | |
columns[x].lgHidden | boolean |
是否隐藏 | |
columns[x].lgOffset | int |
偏移量 1 - 12 | |
columns[x].lgPull | int |
靠左的距离占比:1 - 12 | |
columns[x].lgPush | int |
靠右的距离占比: 1 - 12 |
更多使用说明,请参看 Grid Props