后台管理平台左侧菜单收缩和展开按钮控制

来源:互联网 发布:万网独立域名 编辑:程序博客网 时间:2024/06/07 07:58

var left_control_stats = true;

var left_control_panel = $("master-layout").layout("panel","west");

$("left-control-switch").on("click",function(){

if(left_control_stats ){

left_control_panel.panel("resize",{width:80});

left_control_stats = false;

$(".theme-left-normal").hide();

$(".theme-left-minimal").show();

}else{

left_control_panel.panel("resize",{width:230});

left_control_stats = true;

$(".theme-left-normal").show();

$(".theme-left-minimal").hide();

}

});

原创粉丝点击