amis/docs/components/form/tabs.md
2020-10-28 23:32:33 +08:00

1.1 KiB
Executable File

title description type group menuName icon order
Tabs 选项卡 0 null Tabs 选项卡 53

有多组输入框时,也可以通过选项卡来分组。

基本用法

{
    "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"
            }
          ]
        }
      ]
    }
  ]
}

更多功能

请参考这里

属性表

请参考这里