chore: project approve

This commit is contained in:
xiaojunnuo
2026-02-28 12:14:38 +08:00
parent 8a4e981931
commit 26b1c4244f

View File

@@ -66,12 +66,10 @@ export async function GetUserSimpleByIds(query: any) {
});
}
export async function ApproveJoin(id: any) {
export async function ApproveJoin(form: any) {
return await request({
url: "/enterprise/project/approveJoin",
method: "post",
data: {
id,
},
data: form,
});
}