2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 02:37:16 +08:00

feat: 优化跑分算法

This commit is contained in:
2025-05-19 01:48:48 +08:00
parent 819db43aaa
commit 3d47855cc1
4 changed files with 190 additions and 505 deletions

View File

@@ -2,5 +2,5 @@ import { http } from '@/utils'
export default {
// 运行评分
test: (name: string, multi: boolean): any => http.Post('/toolbox_benchmark/test', { name, multi })
test: (name: string): any => http.Post('/toolbox_benchmark/test', { name })
}