<Column className="table-size" width="10%" title="发射点发" dataIndex="cNoticeUnit"
render={(text, record)=> (
text ?
<span>{text}</span>
:
<span>--</span>
)}
key="Unit" ellipsis/>
在antd table的Column中如果使用了div的话,在设置了ellipsis后是会导致ellipsis失效的。 所以推荐使用行内块。