使用antd中的TreeSelect组件选择选项时如何显示模式?

时间:2019-04-04 15:39:27

标签: javascript reactjs antd

每次使用TreeSelect组件选择选项时,我都试图显示一个包含表单的模态

我不确定要在onSelect中放入什么,因为Modal在另一个文件中。

<TreeSelect onSelect="" {...tProps} treeDefaultExpandAll />
const tProps = {
            style: {width: 300,},
            treeData,
            value: this.state.value,
            onChange: this.onChange,
            treeCheckable: true,
            showCheckedStrategy: SHOW_PARENT,
            searchPlaceholder: 'Please select',
          };
 const treeData = [{
        title: 'User1',
        value: '0-0',
        key: '0-0',
    }, {
        title: 'User2',
        value: '0-1',
        key: '0-1',
        }];

0 个答案:

没有答案