UNPKG

react-antd-table-rowspan

Version:

react+antd表格指定的列,连续的,行合并

17 lines (15 loc) 321 B
/** * @description 渲染单元格 * */ function rendercell(params: any) { const { children, row, key, type = 'rowSpan' } = params let obj = { children, props: { [type]: '', }, } obj.props[type] = row[key + type] ? row[key + type] : 0 return obj } export default rendercell