mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-14 17:01:14 +08:00
c8c4b6efa3
* 文档优化 * 文档细节调整,删除示例的 height 设置,使用自动撑开 * sdk 使用完整例子,因为新版没发布 * 修复官网语言不正确问题 * 增加 icon 调整颜色及大小的例子 * 修复文字错误 * 补充 each 的文档 * 修复 zh-CN 大写问题
69 lines
1.1 KiB
Markdown
Executable File
69 lines
1.1 KiB
Markdown
Executable File
---
|
|
title: Tabs 选项卡
|
|
description:
|
|
type: 0
|
|
group: null
|
|
menuName: Tabs 选项卡
|
|
icon:
|
|
order: 53
|
|
---
|
|
|
|
有多组输入框时,也可以通过选项卡来分组。
|
|
|
|
## 基本用法
|
|
|
|
```schema: scope="body"
|
|
{
|
|
"type": "form",
|
|
"debug": true,
|
|
"controls": [
|
|
{
|
|
"type": "tabs",
|
|
"tabs": [
|
|
{
|
|
"title": "基本配置",
|
|
"controls": [
|
|
{
|
|
"name": "text1",
|
|
"type": "text",
|
|
"label": "文本1"
|
|
},
|
|
|
|
{
|
|
"name": "text2",
|
|
"type": "text",
|
|
"label": "文本2"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"title": "其他配置",
|
|
"controls": [
|
|
{
|
|
"name": "text3",
|
|
"type": "text",
|
|
"label": "文本3"
|
|
},
|
|
|
|
{
|
|
"name": "text4",
|
|
"type": "text",
|
|
"label": "文本4"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
```
|
|
|
|
## 更多功能
|
|
|
|
请参考[这里](../tabs)。
|
|
|
|
## 属性表
|
|
|
|
请参考[这里](../tabs#属性表)。
|