Browse Source

修改下拉框bug

zdd 6 years ago
parent
commit
c05c2db9e4

+ 5 - 1
CZKJ.GBRS2.WebMVC/Views/PriceAnnouncement/Index.cshtml

@@ -123,7 +123,7 @@
123 123
     <script src="/assets/plugins/page/jquery.page.js"></script>
124 124
     <script>
125 125
         window.dataMark = "0$15231983314041342$$15231983721956102$";
126
-        $('.filSelect').click(function () {
126
+        $('.filSelect').click(function (e) {
127 127
             if ($('.filOption').css('display') === "none") {
128 128
                 $('.filOption').slideDown();
129 129
                 $('.filSelect .arraw').addClass('arrawUp');
@@ -131,6 +131,10 @@
131 131
                 $('.filOption').slideUp();
132 132
                 $('.filSelect .arraw').removeClass('arrawUp');
133 133
             }
134
+            e.stopPropagation ? e.stopPropagation() : e.cancelBubble = true; 
135
+        })
136
+        $(document).on('click', function () {
137
+            $('.filOption').slideUp();
134 138
         })
135 139
         $('.filOption li').click(function () {
136 140
             $('.filSeleKey').html($(this).html()).attr('data-id', $(this).attr('data-id'));

+ 1 - 0
CZKJ.GBRS2.WebMVC/wwwroot/assets/css/rate.css

@@ -143,6 +143,7 @@
143 143
   overflow-y: auto;
144 144
   display: none;
145 145
   z-index: 9;
146
+  margin:0;
146 147
 }
147 148
 
148 149
 .ratefilter label .filOption li {