var orgs = "'zd','e','u','s','d','h','zj','w','zc','f','a','ze','9','g','x'"; var ctx="/portal"; $(function() { //登录 var loginhtml = ''; $.ajax({ url:ctx+'/dousers/login', type: 'get', datatype:'json', success: function(data){ if(data.flag == 't'){ $("#qyy_username").html(data.usercname); $("#qyy_loginok").show(); $("#qyy_loginname").hide(); //读取消息 noticenum('noticenum',data.userename); }else{ $("#qyy_loginok").hide(); $("#qyy_loginname").show(); } //登录后效果 $(".qyy_mydown").hover(function(){ $(".qyy_mymenu").show(); }); $(".qyy_signin").hover(function(){ $(".qyy_mydown").css('background','url("/images/qyy/qyy_icon_xl.png") right -10px no-repeat'); $(".qyy_mymenu").show(); },function(){ $(".qyy_mydown").css('background','url("/images/qyy/qyy_icon_xl.png") right 15px no-repeat'); }); $(".qyy_mymenu").hover(function(){ $(".qyy_mymenu").show(); },function(){ $(".qyy_mymenu").hide(); }); $("#qyy_username").mouseout(function(){ $(".qyy_mymenu").hide(); }); } }); //导航效果 $(".qyy_menu li").hover(function(){ $(this).addclass("hover"); $(this).children("div").attr('class',''); },function(){ $(this).removeclass("hover"); $(this).children("div").attr('class',''); } ); $(".qyy_menu li.qyy_no_sub").hover(function(){ $(this).addclass("hover1"); },function(){ $(this).removeclass("hover1"); } ); }) //读取消息 function noticenum(sid,userename){ $.ajax({url: '/portal/info/fm/mcount',type: 'get',data:{noticestatus:'0',sortcode:'notice',touserename:userename}, cache: false,success: function(data){ $("#"+sid).html(data); } }); } //退出 function signout(){ layer.confirm('您确定要退出该系统?', { btn: ['确定','取消'] ,btn1:function(){ window.location = '/portal/logout'; } }); } function tohref(topage){ if("login"==topage){window.location=ctx+"/login.jsp";} else if("index"==topage){window.location=ctx+"/page.action?to="+topage;} else{window.location=ctx+"/page?to="+topage;} } function dosendpage(topage){window.location=ctx+"/page?to="+topage;} function doopenpage(att,topage){att.target="_blank";att.href=ctx+"/page?to="+topage;}