Files
pxdj/pxdj-merch-uni/src/api/project/project.ts
2025-10-24 17:12:18 +08:00

20 lines
416 B
TypeScript

export const getMyProjectList = () =>
http.request({
url: "/p/merchantPage/myProjectList",
method: "GET",
});
export const addRelation = (param: object) =>
http.request({
url: "/p/merchantPage/addRelation",
method: "POST",
data: param,
});
export const delRelation = (param: object) =>
http.request({
url: "/p/merchantPage/delRelation",
method: "POST",
data: param,
});