增加切换系统功能

This commit is contained in:
shuzheng 2017-02-12 01:55:31 +08:00
parent 6ef817bb55
commit 116c293f33
1 changed files with 7 additions and 0 deletions

View File

@ -28,6 +28,13 @@ $(function() {
preventDefault: true
}
});
// 切换系统
$('.switch-systems').click(function () {
var systemid = $(this).attr('systemid');
$('.system_menus').hide(0, function () {
$('.system_' + systemid).show();
});
});
});
// iframe高度自适应
function changeFrameHeight(ifm) {