antd表格字段过长解决方法

在对应columns中加入:
onCell: () => {
return {
style: {
maxWidth: 150,
overflow: ‘hidden’,
whiteSpace: ‘nowrap’,
textOverflow:‘ellipsis’,
cursor:‘pointer’
}
}
},
render: (text) => {text}

你可能感兴趣的:(antd表格字段过长解决方法)