这页面中空白的数据一直到16页都是null
,怎么样才能让这些为null
的行在升序中全部排在最后几页。
{
title: '额定功率',
key: 'devMvaRate',
dataIndex: 'devMvaRate',
// sorter: (a, b) => a.devMvaRate - b.devMvaRate,
sorter: (a, b) => {
if (a.devMvaRate < b.devMvaRate) {
return -1;
}
if (a.devMvaRate > b.devMvaRate) {
return 1;
}
return 0;
},
},