产值计划

This commit is contained in:
tcy
2025-08-23 04:36:12 +08:00
parent 59d1f881dd
commit dbb649d1ce
10 changed files with 518 additions and 274 deletions

View File

@ -61,3 +61,13 @@ export const delConstructionSchedulePlan = (id: string | number | Array<string |
method: 'delete'
});
};
/**
* 获取项目结构
* @param id
*/
export const getProjectStructure = (id: string | number | Array<string | number>) => {
return request({
url: '/project/project/projectStructure/' + id,
method: 'get'
});
};