|
|
|
@ -162,7 +162,18 @@
|
|
|
|
|
$("#loginout").click(function () {
|
|
|
|
|
sessionStorage.clear();
|
|
|
|
|
sessionStorage.removeItem('menu');
|
|
|
|
|
window.location.href = '/dsBase/logout';
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
type: "GET",
|
|
|
|
|
dataType: "json",
|
|
|
|
|
url: "/dsBase/loginPerson/logout",
|
|
|
|
|
async: false,
|
|
|
|
|
success: function (result) {
|
|
|
|
|
console.log(result);
|
|
|
|
|
window.location.href = '/ds-base/html/login.html';
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
$("#changePwd").click(function () {
|
|
|
|
|
WeAdminShow('修改密码', './pages/changePwd/changePwd.html', 700, 350);
|
|
|
|
|