feat: 排行榜

This commit is contained in:
LyMysterious
2025-04-12 14:19:40 +08:00
parent 416a0427cf
commit 5cde67672b
8 changed files with 139 additions and 32 deletions
+24
View File
@@ -0,0 +1,24 @@
/*
* @Descripttion:
* @version: 1.0.0
* @Author: LyMy
* @Date: 2025-04-12 12:54:52
* @LastEditors: LyMy
* @LastEditTime: 2025-04-12 14:14:19
* @FilePath: \go_fish_web\src\api\ranking\ranking.js
*/
import request from '@/utils/request'
/**
* 我的分数
*/
export function myRanking () {
return request.get('/Rank/score')
}
/**
* 全球分数
*/
export function globalRanking () {
return request.get('/Rank/rankings')
}