File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ function BodyRow<RecordType extends { children?: readonly RecordType[] }>(
172
172
) }
173
173
style = { { ...style , ...rowProps ?. style } }
174
174
>
175
- { flattenColumns . map ( ( column , colIndex ) => {
175
+ { flattenColumns . map ( ( column : ColumnType < RecordType > , colIndex ) => {
176
176
const { render, dataIndex, className : columnClassName } = column ;
177
177
178
178
const { key, fixedInfo, appendCellNode, additionalCellProps } = getCellProps (
@@ -183,9 +183,6 @@ function BodyRow<RecordType extends { children?: readonly RecordType[] }>(
183
183
index ,
184
184
getRowKey ,
185
185
) ;
186
- if ( column . title === '手机号' ) {
187
- // console.log('additionalCellProps', column.title, additionalCellProps);
188
- }
189
186
return (
190
187
< Cell < RecordType >
191
188
className = { columnClassName }
You can’t perform that action at this time.
0 commit comments