This commit is contained in:
2025-10-24 17:12:18 +08:00
commit 9dead7a890
2004 changed files with 298646 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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,
});