/** * Created by 7d-vision on 2016/11/7. */ (function ($) { $.buildTable = function ( tableObj ) { var tableHtml = '
'; 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 += '
'; return tableHtml; }; function buildHeader( tableObj ) { var headerHtml = ''; $.each(tableObj.header, function (index, value) { headerHtml += ''+ value.info +''; }); headerHtml += ''; return headerHtml; } function buildTopButton( tableObj ) { var topHtml = '
'; if( tableObj.topButton ){ $.each(tableObj.topButton, function(index, value) { if( value.confirm ){ value.class += ' confirm'; } if( value.icon ){ topHtml += ''; }else{ topHtml += ''; } }); } topHtml += '
'; return topHtml; } function buildDataList( tableObj ) { var dataListHtml = ''; $.each(tableObj.data, function (index, value) { dataListHtml += ''; }); dataListHtml += ''; return dataListHtml; } function buildEmptyTable( tableObj ) { var emptyHtml = ''; var spanNum = tableObj.header.length + 1; emptyHtml += ''; emptyHtml += '
'; emptyHtml += ' 暂时没有数据
'; emptyHtml += ' 本系统由 七维视觉科技有限公司 开发维护'; emptyHtml += '
'; return emptyHtml; } })(jQuery);