BeX5门户登陆后首页功能树中默认实现的
如果需要默认隐藏可以在/UI2/portal/pc3/index.js中实现
找到this.on(‘onLoadFunctionTree’, this.doCreateFunctionTree);在后面加上$(“.sidebar-toggle”).click();
具体如下:

		//加载功能树
		this.on('onLoadFunctionTree', this.doCreateFunctionTree);
		
		$(".sidebar-toggle").click();//隐藏功能树
		
		//清理功能树
		this.on('onClearFunctionTree', this.clearFuncTree);