';
if( tableObj.rightButton && tableObj.rightButton.length ){
tableObj.header.push({field:"action",info:"操作"});
}
if( tableObj.topButton && tableObj.topButton.length ){
tableHtml += buildTopButton( tableObj );
}
tableHtml += '
';
if( tableObj.header && tableObj.header.length ){
tableHtml += buildHeader( tableObj );
}
if( tableObj.data && tableObj.data.length ){
tableHtml += buildDataList( tableObj );
}else{
tableHtml += buildEmptyTable( tableObj );
}
tableHtml += '