UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

59 lines (48 loc) 1.29 kB
--- category: 2 title: 多选 title_en: Multiple Selection --- zh-CN 多选的树选择。 en-US Multiple selection usage. ````jsx import { TreeSelect } from 'parkball'; const TreeNode = TreeSelect.TreeNode; class Demo extends React.Component { state = { value: undefined, } onChange = (value) => { console.log(value); this.setState({ value }); } render() { return ( <TreeSelect showSearch style={{ width: 300 }} value={this.state.value} dropdownStyle={{ maxHeight: 400, overflow: 'auto' }} placeholder="Please select" allowClear multiple treeDefaultExpandAll onChange={this.onChange} > <TreeNode value="parent 1" title="parent 1" key="0-1"> <TreeNode value="parent 1-0" title="parent 1-0" key="0-1-1"> <TreeNode value="leaf1" title="my leaf" key="random" /> <TreeNode value="leaf2" title="your leaf" key="random1" /> </TreeNode> <TreeNode value="parent 1-1" title="parent 1-1" key="random2"> <TreeNode value="sss" title={<b style={{ color: '#08c' }}>sss</b>} key="random3" /> </TreeNode> </TreeNode> </TreeSelect> ); } } ReactDOM.render(<Demo />, mountNode); ````