解决jeecgboot分页后表格序号不连续的问题

jeecgboot最新vue分页之后,换页序号都是从1开始,不符合使用规则.

 columns: [

          {

            title: '序号',

            dataIndex: '',

            key:'rowIndex',

            width:60,

            align:"center",

          customRender:(text,record,index)=>`${this.ipagination.current * 10 - 9 + parseInt(index)}`

           }

]

 序号写这个函数模板渲染,将按正确序号显示.

你可能感兴趣的:(前端)