每次使用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',
}];