{
title: '标题',
dataIndex: 'systemName',
width: 300,
minWidth: 300,
customRender: ({ text }: { text: string }) => {
return `${text}`;
},
},
customRender: ({ text }: { text: string }) => {
return `${text}`;
},这行代码.
方法② ellipsis: false,加这个进去,关闭省略号
{
title: 'xx表题',
dataIndex: 'systemName',
width: 300,
minWidth: 300,
ellipsis: false,
},