bootstrap添加序号

{
title: '序号',
align: 'center',
halign: 'center',
formatter: function (value, row, index) {
var options = $('#bootstrap-table').bootstrapTable('getOptions');
return options.pageSize * (options.pageNumber - 1) + index + 1;
}
},

原文地址:https://www.cnblogs.com/wwwcf1982603555/p/14037557.html