new Ext.tree.Panel({
   width:'100%',
title:'菜单',
//hideHeaders:false,
//renderTo:Ext.getBody(),
height:300,
rootVisible:false, //是否显示ROOT
useArrows:true,
root:{
text:'首页',
children:[
{text:'常用',
children:[{text:'工具'}


]},
{text:'维修管理'},
{text:'资产管理',
children:[{text:'添加资产'},
{text:'调动资产'},
{text:'申请资产'},
{text:'报废资产'}
]
 },
{text:'管理项',
    children:[{text:'添加组织',      listeners:{'click':function(_t,_d){
                                           alert('执行了没有?');
  }
  
  } 
  }]
}
]

}
  
  
  
  })