2021-05-27 14:48:48 +08:00
|
|
|
---
|
|
|
|
order: 6
|
|
|
|
title:
|
|
|
|
zh-CN: 线性样式
|
|
|
|
en-US: Show Tree Line
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
通过 `treeLine` 配置线性样式。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use `treeLine` to show the line style.
|
|
|
|
|
|
|
|
```tsx
|
2022-05-23 14:37:16 +08:00
|
|
|
import { Space, Switch, TreeSelect } from 'antd';
|
2022-05-19 09:46:26 +08:00
|
|
|
import React, { useState } from 'react';
|
2021-05-27 14:48:48 +08:00
|
|
|
|
2022-09-19 11:00:17 +08:00
|
|
|
const treeData = [
|
|
|
|
{
|
|
|
|
value: 'parent 1',
|
|
|
|
title: 'parent 1',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
value: 'parent 1-0',
|
|
|
|
title: 'parent 1-0',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
value: 'leaf1',
|
|
|
|
title: 'leaf1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'leaf2',
|
|
|
|
title: 'leaf2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'parent 1-1',
|
|
|
|
title: 'parent 1-1',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
value: 'sss',
|
|
|
|
title: 'sss',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|
2021-05-27 14:48:48 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [treeLine, setTreeLine] = useState(true);
|
|
|
|
const [showLeafIcon, setShowLeafIcon] = useState(false);
|
2021-05-27 14:48:48 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Space direction="vertical">
|
|
|
|
<Switch
|
|
|
|
checkedChildren="treeLine"
|
|
|
|
unCheckedChildren="treeLine"
|
|
|
|
checked={treeLine}
|
|
|
|
onChange={() => setTreeLine(!treeLine)}
|
|
|
|
/>
|
|
|
|
<Switch
|
|
|
|
disabled={!treeLine}
|
|
|
|
checkedChildren="showLeafIcon"
|
|
|
|
unCheckedChildren="showLeafIcon"
|
|
|
|
checked={showLeafIcon}
|
|
|
|
onChange={() => setShowLeafIcon(!showLeafIcon)}
|
|
|
|
/>
|
2022-09-19 11:00:17 +08:00
|
|
|
<TreeSelect
|
|
|
|
treeLine={treeLine && { showLeafIcon }}
|
|
|
|
style={{ width: 300 }}
|
|
|
|
treeData={treeData}
|
|
|
|
/>
|
2021-05-27 14:48:48 +08:00
|
|
|
</Space>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
export default App;
|
2021-05-27 14:48:48 +08:00
|
|
|
```
|