就是title可以用函數返回
···
const obj = {
key: key,
dataIndex: key,
// title: data,
title: (val) => {
const style = {
maxWidth: '200px',
overflow: 'hidden',
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
cursor: 'pointer'
}
return (
<div style={style} title={data}>{data}</div>
)
},
align: 'center'
}
···