|
@@ -50,6 +50,7 @@
|
|
|
|
|
|
$(".industry .all span").on('click', function () {
|
|
|
$(this).addClass("active")
|
|
|
+ $(".connectMain").css("background", "#f5f4f9");
|
|
|
});
|
|
|
|
|
|
$(".btn").on('click', function () {
|
|
@@ -64,7 +65,18 @@
|
|
|
window.location.href = "/front/wx_dataExport/toSieve"
|
|
|
});
|
|
|
//
|
|
|
-
|
|
|
+ if(localStorage.price !== ""){
|
|
|
+ var price = localStorage.price.replace("-","").split("万元");
|
|
|
+ var prices = price.filter(function (e) {
|
|
|
+ return e !== "";
|
|
|
+ });
|
|
|
+ $("#min").val(prices[0]);
|
|
|
+ $("#max").val(prices[1]);
|
|
|
+ if($("#min").val() !== "" && $("#max").val() !== ""){
|
|
|
+ $(".connectMain").css("background", "#2cb7ca");
|
|
|
+ $(".all span").removeClass("active");
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
})
|
|
|
</script>
|