set minimal count of accepted_number for user rank

This commit is contained in:
2024-06-12 15:10:11 +08:00
parent e379c0bb6d
commit 7d9e8d228f
3 changed files with 9 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ const chart = ref<Rank[]>([])
async function listRanks() {
const offset = (query.page - 1) * query.limit
const res = await getRank(offset, query.limit)
const res = await getRank(offset, query.limit, 30)
data.value = res.data.results
total.value = res.data.total
if (query.page === 1) {