解决用户管理页面滚动返回顶部条失效

This commit is contained in:
Ricky
2020-10-12 11:47:15 +08:00
parent 406889ae07
commit 7d8b7ba2d5
2 changed files with 10 additions and 2 deletions

View File

@ -101,6 +101,14 @@
panehHidden = true;
}
$('body').layout({ initClosed: panehHidden, west__size: 185 });
// 回到顶部绑定
if ($.fn.toTop !== undefined) {
var opt = {
win:$('.ui-layout-center'),
doc:$('.ui-layout-center')
};
$('#scroll-up').toTop(opt);
}
queryUserList();
queryDeptTree();
});