amis2/docs/zh-CN/components/form/treeselect.md

71 lines
1.3 KiB
Markdown
Raw Normal View History

2020-07-28 10:03:53 +08:00
---
title: TreeSelect 树形选择器
description:
2020-07-28 10:03:53 +08:00
type: 0
group: null
menuName: TreeSelect 树形选择器
icon:
2020-07-28 10:03:53 +08:00
order: 60
---
## 基本使用
```schema: scope="body"
2020-07-28 10:03:53 +08:00
{
"type": "form",
2021-01-19 10:20:09 +08:00
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
2020-07-28 10:03:53 +08:00
"controls": [
{
"type": "tree-select",
"name": "tree",
"label": "Tree",
"searchable": true,
2020-07-28 10:03:53 +08:00
"options": [
{
"label": "Folder A",
"value": 1,
"children": [
{
"label": "file A",
"value": 2
},
{
"label": "file B",
"value": 3
}
]
},
{
"label": "file C",
"value": 4
},
{
"label": "file D",
"value": 5
},
{
"label": "Folder E",
"children": [
{
"label": "Folder G",
"children": [
{
"label": "file H",
"value": 6
},
{
"label": "file I",
"value": 7
}
]
}
]
2020-07-28 10:03:53 +08:00
}
]
}
]
}
```
更多用法,见 [Tree](./tree)