分类目录: html5
AntDesign vue table中增加序号
Post date:
Author: cyy
标签: AntDesign Vue, vue3
Number of comments: no comments
AntDesign vue table中增加序号,可以使用customRender实现
参数分别为当前行的值,当前行数据,行索引
但我输出record,index,column都是undefined,最后发现index下标在text里
columns: [
{
title: '序号',
width: '0.3rem',
dataIndex: 'index',
key: 'index',
customRender: (text: any, record: any, index: any, column: any) => {
return text.index + 1
}
}
]
最后效果