他筛选下拉选
$(".unit i").on("click",function(e){
e.stopPropagation();
$(this).next("ul").show();
$(this).parent(".unit").siblings().children("ul").hide();
});
$(".unit li").on("click",function(e){
e.stopPropagation();
var text=$(this).text();
$(this).addClass("active").siblings("li").removeClass("active");
$(this).parents("ul").prev("i").text(text);
$(this).parents("ul").hide();
resultTable.ajax.reload();
});
$("body").on("click",function(){
$(".unit ul").each(function(i,n){
$(n).hide();
});
});