customRender: (value, row, index) => {
const obj = {
children: '¥200+200火力值',
attrs: {}
}
if (index === 0) {
// obj.attrs.rowSpan = this.dataSource.length // 合并数量 纵向合并
obj.attrs.colSpan = 3 // 横向合并
}
if (index >= 1) {
// obj.attrs.rowSpan = 0 // 合并数量 纵向合并
obj.attrs.colSpan = 0 // 横向合并
}
return obj
}
单元格合并