$("#toSearchAllBtn").on("click",function(){
$.get("findAllEnterprise",{},function(listenterPriseInfo){
if (listenterPriseInfo.length > 0) {
$("#tbenterPriseInfo").empty();
$.each(listenterPriseInfo, function(i, enterPriseInfo) {
var html= "<tr class='success'>"+
"<td>"+
"<td>"+i+"</td>"+
"<td>"+enterPriseInfo.fprovince+"</td>"+
"<td>"+enterPriseInfo.fcity+"</td>"+
"<td>"+enterPriseInfo.fname+"</td>"+
"<td>"+enterPriseInfo.taskayear+"</td>"+
"<td>"+enterPriseInfo.fmodifytime+"</td>"+
"<td>"+enterPriseInfo.rminemscore.rminemscore+"</td>"+
"<td>"+enterPriseInfo.FLevel+"</td>"+
"<td>"+
"<a id='toenterPriseInfo"+enterPriseInfo.fguid+"' name='toenterPriseInfoName' data-id='"+enterPriseInfo.fguid+"'>降级</a>"+
"</td>"
$("#tbenterPriseInfo").append(html);
});
}
});
});