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

pull/64/head
RuoYi 2019-01-13 12:26:09 +08:00
parent 122e8b61a0
commit e37ec9f8fa
1 changed files with 7 additions and 3 deletions

View File

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