Commit 7d5404fc by 梁建民

css

parent 57d83883
...@@ -481,3 +481,4 @@ ...@@ -481,3 +481,4 @@
.from_mask .form .form_content .btn_div span.cz { .from_mask .form .form_content .btn_div span.cz {
margin-left: 40px; margin-left: 40px;
} }
/*# sourceMappingURL=inquirydetail.css.map */
\ No newline at end of file
...@@ -55,10 +55,14 @@ ...@@ -55,10 +55,14 @@
//导航栏 //导航栏
var isShow = $('.xbj_li').find('dl').css('display'); var isShow = $('.xbj_li').find('dl').css('display');
if (isShow == 'none') { if (isShow == 'none') {
$('.xbj_li').find('.li_right').removeClass('iconjuxing15').addClass('iconjuxing12')
$('.xbj_li').find('.li_right').removeClass('iconjuxing15').addClass('iconjuxing12');
} else { } else {
$('.xbj_li').find('.li_right').removeClass('iconjuxing12').addClass('iconjuxing15')
$('.xbj_li').find('.li_right').removeClass('iconjuxing12').addClass('iconjuxing15');
} }
return this; return this;
...@@ -67,28 +71,43 @@ ...@@ -67,28 +71,43 @@
//导航栏 //导航栏
$('.xbj_li').on('click', function () { $('.xbj_li').on('click', function () {
var isShow = $(this).find('dl').css('display'); var isShow = $(this).find('dl').css('display');
if (isShow == 'none') { if (isShow == 'none') {
$(this).find('dl').slideDown(); $(this).find('dl').slideDown();
$('.xbj_li').find('.li_right').removeClass('iconjuxing12').addClass('iconjuxing15')
$('.xbj_li').find('.li_right').removeClass('iconjuxing12').addClass('iconjuxing15');
} else { } else {
$(this).find('dl').slideUp(); $(this).find('dl').slideUp();
$('.xbj_li').find('.li_right').removeClass('iconjuxing15').addClass('iconjuxing12')
$('.xbj_li').find('.li_right').removeClass('iconjuxing15').addClass('iconjuxing12');
} }
}); });
//退出 //退出
$(".nav_end").on('click', function () { $(".nav_end").on('click', function () {
layer.confirm('您确定退出系统嘛', {icon: 3, title: '提示',move:false}, function (index) { layer.confirm('您确定退出系统嘛', {icon: 3, title: '提示',move:false}, function (index) {
opt.getData(apis.authLogout, 'POST', null, function (res) { opt.getData(apis.authLogout, 'POST', null, function (res) {
if (res.err_code == 0) { if (res.err_code == 0) {
Util.delCookie('token', cookieHostname); Util.delCookie('token', cookieHostname);
window.location.reload(); window.location.reload();
} else { } else {
layer.msg(res.err_msg); layer.msg(res.err_msg);
} }
}, undefined, true); }, undefined, true);
layer.close(index); layer.close(index);
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment