mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-13 12:46:36 +08:00
添加菜单处理
This commit is contained in:
@@ -1,12 +1,29 @@
|
||||
export function setMenu(menuList) {
|
||||
if(menuList!=null && menuList.Count()>0)
|
||||
{
|
||||
export function setTreeMenu(menuList) {
|
||||
if (menuList != null && menuList.length > 0) {
|
||||
|
||||
}
|
||||
|
||||
//结果
|
||||
var res;
|
||||
//获取最小的parentId
|
||||
var minParentId = 0;
|
||||
//获取id=最小的parentId的菜单列表
|
||||
var menuList1=menuList.filter((item)=>{item.parentId==minParentId}) ;
|
||||
|
||||
menuList1.forEach(element=>{
|
||||
res.push(element)
|
||||
var children=menuList.filter((item)=>{item.parentId==element.id}) ;
|
||||
if (children.length > 0) {
|
||||
setTreeChildren(menuList, children,element)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function setTreeChildren(menuList)
|
||||
{
|
||||
|
||||
function setTreeChildren(menuList, childrenList,model) {
|
||||
childrenList.forEach(element => {
|
||||
model.Childs.push(element);
|
||||
var childrenList2=menuList.filter((item)=>{item.parentId==element.id}) ;
|
||||
if (childrenList2.length > 0) {
|
||||
setTreeChildren(menuList, childrenList2,element)
|
||||
}
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user