feat: 媒体账号/投放账户增加【所属项目】相关逻辑

This commit is contained in:
rd
2025-07-23 14:30:44 +08:00
parent 9ffe5be94e
commit b90d0aba26
18 changed files with 174 additions and 186 deletions

View File

@ -377,6 +377,11 @@ export const getProjects = (params = {}) => {
return Http.get('/v1/projects', params);
};
// 项目管理-列表
export const getProjectList = () => {
return Http.get('/v1/projects/list');
};
// 项目管理-删除
export const deleteProject = (id: string) => {
return Http.delete(`/v1/projects/${id}`);