Exists的使用
评论
31 views
作者文章归档:haviaqin
const columns = [
{
title: 'Home phone',
colSpan: 2,
dataIndex: 'tel',
onCell: (_, index) => {
if (index === 3) {
return {
rowSpan: 2,
};
}
if (index === 4) {
return {
rowSpan: 0,
...