0%

Hello World

前端学习

BootStrap学习

BootStarp-Table

1.bootstrap-table设置某列序号自增

1
2
3
4
5
6
7
col = [{
field: 'SerialNumber',
title: '序号',
formatter: function (value, row, index) {
return index+1;
}
}]