This commit is contained in:
Teo
2025-08-21 01:41:16 +08:00
4 changed files with 490 additions and 201 deletions

View File

@ -51,13 +51,9 @@ export const updatePlan = (data: PlanForm) => {
});
};
/**
* 删除招标计划
* @param id
*/
export const delPlan = (id: string | number | Array<string | number>) => {
export const getSegmentedIndicatorPlanning = (id) => {
return request({
url: '/plan/plan/' + id,
method: 'delete'
url: '/tender/segmentedIndicatorPlanning/' + id,
method: 'get'
});
};