登陆注销交互优化

pull/6/head
xuxueli 7 years ago
parent 2984ac5c5f
commit 36508c0c3c

@ -7,14 +7,18 @@ $(function(){
$.post(base_url + "/logout", function(data, status) { $.post(base_url + "/logout", function(data, status) {
if (data.code == "200") { if (data.code == "200") {
layer.open({ layer.msg('');
setTimeout(function(){
window.location.href = base_url + "/";
}, 500);
/*layer.open({
title: '', title: '',
content: '', content: '',
icon: '1', icon: '1',
end: function(layero, index){ end: function(layero, index){
window.location.href = base_url + "/"; window.location.href = base_url + "/";
} }
}); });*/
} else { } else {
layer.open({ layer.open({
title: '', title: '',

@ -48,14 +48,18 @@ $(function(){
submitHandler : function(form) { submitHandler : function(form) {
$.post(base_url + "/login", $("#loginForm").serialize(), function(data, status) { $.post(base_url + "/login", $("#loginForm").serialize(), function(data, status) {
if (data.code == "200") { if (data.code == "200") {
layer.open({ layer.msg('');
setTimeout(function(){
window.location.href = base_url;
}, 500);
/*layer.open({
title: '', title: '',
content: '', content: '',
icon: '1', icon: '1',
end: function(layero, index){ end: function(layero, index){
window.location.href = base_url; window.location.href = base_url;
} }
}); });*/
} else { } else {
layer.open({ layer.open({
title: '', title: '',

Loading…
Cancel
Save