效果:
解决方案
1>在css设置样式:
.smileDark {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
width: 100px;(自行设置)
}
2>columns
{
title: '备注',
dataIndex: 'remarks',
width: '12%',
render: text => <div className={styles.smileDark} title={text}>{text}</div>,
}