update
Some checks failed
Deploy / deploy (build, debian, 22, /root/OJDeploy/data/clientnext) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822, /root/OJ/data/dist) (push) Has been cancelled

This commit is contained in:
2026-05-11 04:27:12 -06:00
parent c5a89c6d6a
commit 53a79cd511
2 changed files with 47 additions and 6 deletions

View File

@@ -474,6 +474,6 @@ export function getStuckProblems() {
return http.get("admin/problem/stuck")
}
export function getTopACTrend() {
return http.get("admin/problem/top_ac_trend")
export function getTopACTrend(params: { since_year: number; until_year: number; min_per_year: number }) {
return http.get("admin/problem/top_ac_trend", { params })
}