This commit is contained in:
cxc
2022-08-23 16:25:52 +08:00
commit 96954052c5
15 changed files with 89462 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import request from "../request.js";
export const getOrganizational = (params) => {
return request({
url: "/organizational",
method: "get",
params,
});
};
export const deleteOrganizational = (id) => {
return request({
url: `/organizational/${id}`,
method: "delete",
});
};