用户管理移动端默认隐藏左侧布局

pull/64/head
RuoYi 6 years ago
parent 122e8b61a0
commit e37ec9f8fa

@ -98,7 +98,11 @@
var prefix = ctx + "system/user";
$(function() {
$('body').layout({ west__size: 185 });
var panehHidden = false;
if ($(this).width() < 769) {
panehHidden = true;
}
$('body').layout({ initClosed: panehHidden, west__size: 185 });
queryUserList();
queryDeptTree();
});

Loading…
Cancel
Save