rule-tree
https://github.com/zhouzefei/rule-tree/blob/main/src/index.js
数据格式
{
relation : 'and',
children : [
{
relation : 'or',
children : [{}, {}]
},
{
name : 'lucy',
sex : '0',
}
]
}
// 嵌套
{
relation: 'or',
children: [
{
name: 'lucy',
sex: '0',
},
{
relation: 'or',
children: [
{
name: 'jim',
sex: '1',
},
],
},
],
}