Files
sh-app/api/user.js
T

9 lines
224 B
JavaScript
Raw Normal View History

2026-06-09 19:29:04 +08:00
import { get, post} from "@/utils/request.js"
/**
* 根据用户获取项目列表
* @param userId {string} 用户的ID
*/
export const reqProjectByUserId = (userId)=>get(`Project/getProjectsByUserId?userId=${userId}`)