我设置width应该是这么宽,结果设置了 ellipsis: true 后,这个宽度就不生效了,被内容撑开了
解决办法:onCell: () => {
return {
style: {
maxWidth: 160,
overflow: 'hidden',
whiteSpace: 'nowrap',
textOverflow:'ellipsis',
cursor:'pointer'
}
}
},
把这一串加到需要处理的列中
附上我的代码截:
此时宽度就不会被撑开了.