From 2332f8c779a229366ae6f378af9b48874c46ad98 Mon Sep 17 00:00:00 2001 From: devil_gong Date: Tue, 11 Sep 2018 10:05:08 +0800 Subject: [PATCH] search --- service/Application/Home/View/Default/Search/Index.html | 2 +- service/Public/Home/Default/Js/Search.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/service/Application/Home/View/Default/Search/Index.html b/service/Application/Home/View/Default/Search/Index.html index 6aaf40788..3c9404819 100755 --- a/service/Application/Home/View/Default/Search/Index.html +++ b/service/Application/Home/View/Default/Search/Index.html @@ -118,7 +118,7 @@ -
+ diff --git a/service/Public/Home/Default/Js/Search.js b/service/Public/Home/Default/Js/Search.js index 36b5b50f6..e852da577 100755 --- a/service/Public/Home/Default/Js/Search.js +++ b/service/Public/Home/Default/Js/Search.js @@ -80,13 +80,13 @@ $(function() $(this).next('div.dd-conent').css('top', ($(this).offset().top+33)+'px') if ($(this).next('div.dd-conent').css("display") == 'none') { - $(".theme-popover-mask").height(hh); + $(".theme-popover-mask").show(); $(".theme-popover").css({"position":"fixed", "top":0, "padding-top":"46px"}); $(this).next('div.dd-conent').slideToggle(300); $('.select div.dd-conent').not($(this).next()).hide(); } else { $(this).next('div.dd-conent').slideUp(300); - $(".theme-popover-mask").height(0); + $(".theme-popover-mask").hide(); $(".theme-popover").css({"position":"static", "top":0, "padding-top":"0"}); } }) @@ -97,12 +97,12 @@ $(function() $(document).on("click", ".select dd", function() { $(".dd-conent").slideUp(300); - $(".theme-popover-mask").height(0); + $(".theme-popover-mask").hide(); $(".theme-popover").css({"position":"static", "top":0, "padding-top":"0"}); }); $(document).on("click", ".theme-popover-mask", function() { $(".dd-conent").slideUp(300); - $(".theme-popover-mask").height(0); + $(".theme-popover-mask").hide(); $(".theme-popover").css({"position":"static", "top":0, "padding-top":"0"}); });