|
@@ -239,7 +239,6 @@
|
|
|
industrySelect+=($(this).attr("data-value"))+",";
|
|
|
}
|
|
|
});
|
|
|
- console.log(industrySelect.substring(0,industrySelect.length-1));
|
|
|
reqParam.industry=industrySelect.substring(0,industrySelect.length-1);
|
|
|
|
|
|
//信息类型
|
|
@@ -391,7 +390,16 @@
|
|
|
if(area != ""){
|
|
|
area = '<span class="location">'+area+'</span>';
|
|
|
}
|
|
|
-
|
|
|
+ //行业
|
|
|
+ var industry=list[i].industry;
|
|
|
+ if(!industry){
|
|
|
+ industry="";
|
|
|
+ }else{
|
|
|
+ industry=$.trim(industry);
|
|
|
+ }
|
|
|
+ if(industry!=""){
|
|
|
+ industry='<span class="industry">'+industry+'</span>';
|
|
|
+ }
|
|
|
|
|
|
//时间
|
|
|
var tdf = list[i].publishtime;
|
|
@@ -435,7 +443,7 @@
|
|
|
+'</div>'
|
|
|
+'<div style="clear:both;"></div>'
|
|
|
+'<div class="restime time-diff">'
|
|
|
- +area+datatype+tdf
|
|
|
+ +area+datatype+industry+tdf
|
|
|
+'</div>'
|
|
|
+'<div style="clear:both;"></div>'
|
|
|
+detail
|