Ant Design tree 想要一级单选二级多选可以这样做
```css
/deep/.ant-tree {
& > li[class^="ant-tree-treenode-switcher"] {
.ant-tree-checkbox {
/* 先把所有的隐藏 x*/
display: none;
}
.ant-tree-child-tree {
.ant-tree-checkbox {
/* 再把指定的二级显示*/
display: inline-block;
}
}
}
}
/* 外层自定义id*/