This commit is contained in:
2025-11-11 18:39:32 +08:00
parent e6a2312cdc
commit 3cd473bedb
697 changed files with 84607 additions and 0 deletions

9
scoring/api/user.js Normal file
View File

@@ -0,0 +1,9 @@
import { GET, POST } from '@/utils/request.js'
export const register = (userInfo) => {
return POST('/system/score/user', userInfo);
}
export const login = (userInfo) => {
return POST('/system/score/user/login', userInfo);
}