input搜索框搜索树形子级内容
1. input框输入搜索内容
2. 获取tree结构数据
3. 与tree匹配输入的内容,tree是多维数组,一级一级的对比输入的内容是否匹配,用forEach循环遍历数据,匹配不到在往下找,直到找到为null ,返回
//tree子级
const childSerch = (res: any, val: any) => {
res?.map((itemChilf: {
meterName: any }, index) => {
if (itemChilf?.meterName === val) {
dataName.push(itemChilf);
return dataName;
} else {
itemChilf?.children?.map((itemChilf1: {
meterName: any }) => {
if (itemChilf1.meterName =