feat: table customRender multiple params

pull/2682/head
Amour1688 2020-08-09 18:46:11 +08:00
parent f0337cebde
commit a43655b0b5
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ export default {
let rowSpan;
if (customRender) {
text = customRender({ text, record, index, column });
text = customRender(text, record, index, column);
if (isInvalidRenderCellText(text)) {
tdProps = text.props || tdProps;
({ colSpan, rowSpan } = tdProps);