chore: project member

This commit is contained in:
xiaojunnuo
2026-02-04 18:54:00 +08:00
parent 2fc491015e
commit 6ddc23e2aa
12 changed files with 323 additions and 147 deletions
@@ -1,6 +1,7 @@
import { request } from "/src/api/service";
const apiPrefix = "/sys/project/provider";
const apiPrefix = "/sys/enterprise/project";
const userApiPrefix = "/sys/authority/user";
export async function GetList(query: any) {
return await request({
@@ -58,14 +59,6 @@ export async function DeleteBatch(ids: any[]) {
});
}
export async function SetDefault(id: any) {
return await request({
url: apiPrefix + "/setDefault",
method: "post",
data: { id },
});
}
export async function SetDisabled(id: any, disabled: boolean) {
return await request({
url: apiPrefix + "/setDisabled",