easyUi 管理页切换

$(function(){

    //用户信息  $("#mb").menubutton({
        iconCls: 'icon-user',
        plain:true,
        menu: '#mm',
    });
    //用户信息结束   //退出系统  $("#out").click(function(){
        $.messager.confirm('确认对话框', '您想要退出该系统吗?', function(r){
            if (r){
                window.location.href=ThinkPHP['MODULE']+'/Login/out';
            }
        });
    });
    //退出系统结束   //菜单导航  $("#nav").tree({
        url:ThinkPHP['MODULE']+'/Index/getNav',
        lines:true,
        onLoadSuccess:function(node, data){
            var _this = this;
            if(data){
                $(data).each(function(){
                    if(this.state == 'closed'){
                        $(_this).tree('expandAll');
                    }
                });
            }
        },
        onClick:function(node) {

            if (node.url) {

                if ($("#tabs").tabs('exists', node.text)) {
                    $("#tabs").tabs('select', node.text);
                } else {
                    $("#tabs").tabs('add', {
                        title: node.text,
                        closable:true,
                        iconCls:node.iconCls,
                        href:ThinkPHP['MODULE']+'/'+node.url,
                    });
                }
            }
        }
    });
    //菜单导航结束   //后台首页tab切换  $("#tabs").tabs({
        border:false,
        fit:true,
    });
    //后台首页tab切换结束  });

你可能感兴趣的:(easyUi 管理页切换)