forked from Gitlink/forgeplus-react
排行榜优化
This commit is contained in:
parent
56a983c4c0
commit
34fdfaff6e
|
@ -73,6 +73,7 @@ function Rank({ isLocal, match }) {
|
|||
title: '得分F1',
|
||||
dataIndex: 'f1',
|
||||
className: 'textCenter',
|
||||
defaultSortOrder: 'descend',
|
||||
sorter: (a, b) => a.f1 - b.f1
|
||||
},
|
||||
{
|
||||
|
@ -92,11 +93,19 @@ function Rank({ isLocal, match }) {
|
|||
useEffect(() => {
|
||||
rankingList(competitionId, {
|
||||
page: curPage,
|
||||
limit: 20,
|
||||
limit: 1000,
|
||||
keyword,
|
||||
}).then(res => {
|
||||
if (res && res.data && res.data.message == "success") {
|
||||
setList(res.data.data);
|
||||
const list = res.data.data;
|
||||
list.forEach(e => {
|
||||
if (e.other_score_json) {
|
||||
e.f1 = e.other_score_json.f1;
|
||||
e.precision = e.other_score_json.precision;
|
||||
e.recall = e.other_score_json.recall;
|
||||
}
|
||||
});
|
||||
setList(list);
|
||||
setTotal(res.data.count)
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue