ant design vue表格a-table加序号
a-table加index序号
·
1、text:序号一列默认显示的数据
2、record:一行的所有数据
3、index:Table表格数据的下标,也就是数组的下标
数组的下标是从0开始的,所以需要+1。
这样设置不改变原数据中序号,只改变表格一页的中所显示数据的序号:如一页显示10条数据,那么本页的序号则是从1~10。
{
title: "序号",
dataIndex: "key",
key: "key",
align: "center",
customRender: (text,record,index) => `${index+1}`,//此处为重点
},
更多推荐
已为社区贡献3条内容
所有评论(0)