This commit is contained in:
2024-08-21 11:03:31 +08:00
parent 934b3b7b74
commit e25627cda9
33 changed files with 204 additions and 176 deletions

View File

@@ -66,3 +66,12 @@ export const deletePortal = (portalId) => {
method: "delete",
});
};
// 发布列表接口
export const publishPortal = (data) => {
return request({
url: "/custom/query/portal/list/publish",
method: "post",
data,
});
};