$(function() {
setLogin();
});
function setLogin() {
$.ajax({
url : "api/login/getLoginName",
async : true,
dataType : "json",
success : function(data) {
if (data.code == 0) {
var username = data.info.name;
setNav(username);
} else {
window.location.href = "login.html";
}
},
error : function() {
window.location.href = "login.html";
}
});
}
function setNav(username) {
$(".navbar").eq(0).empty();
var html = "";
html += "
";
html += " ";
html += "
";
html += " ";
html += "
";
html += "
";
html += "
";
$(".navbar").eq(0).html(html);
// 设置选中
$("#menu-top li").removeClass("active");
$("#menu-top li").eq(firstIndex).addClass("active");
$("#sidebar div").eq(secondIndex).addClass("cebiandh1");
$("#sidebar div").eq(secondIndex).removeClass("cebiandh");
$.ajax({
url : '../../client/html/api/v1/config/getSystemName',
type : 'GET',
dataType : 'json',
// timeout : 3000, // 设定超时
cache : false, // 禁用缓存
error : function(request, textStatus, errorThrown) {
},
success : function(data) {
$(".navbar-brand").eq(0).html(data.data);
$("title").html(data.data);
}
});
} // 设置成功后回调函数
});
}