const ass = (data) => {  data.map((list, i) => {    list.alwaysShow = true    if (list.children && list.children != null) {      ass(list.children)    }  })  return data}