This commit is contained in:
2026-06-09 19:29:04 +08:00
commit d171a5b73b
23 changed files with 1676 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import {
get,
post
} from '@/utils/request.js'
export const reqLogin = (data) => post('user/postLoginOn', data)
+8
View File
@@ -0,0 +1,8 @@
import { get, post} from "@/utils/request.js"
/**
* 根据用户获取项目列表
* @param userId {string} 用户的ID
*/
export const reqProjectByUserId = (userId)=>get(`Project/getProjectsByUserId?userId=${userId}`)