This commit is contained in:
ljx
2025-09-16 20:25:23 +08:00
parent d640cd7f95
commit 4ad2b0c6dc
3 changed files with 35 additions and 4 deletions

View File

@ -1,6 +1,10 @@
import request from '@/utils/request';
import { AxiosPromise } from 'axios';
import { ConstructionSchedulePlanVO, ConstructionSchedulePlanForm, ConstructionSchedulePlanQuery } from '@/api/progress/constructionSchedulePlan/types';
import {
ConstructionSchedulePlanVO,
ConstructionSchedulePlanForm,
ConstructionSchedulePlanQuery
} from '@/api/progress/constructionSchedulePlan/types';
/**
* 查询施工进度计划列表
@ -71,3 +75,14 @@ export const getProjectStructure = (id: string | number | Array<string | number>
method: 'get'
});
};
/**
* 施工进度计划完成
* @param id
*/
export const finishConstructionSchedulePlan = (id: string | number | Array<string | number>) => {
return request({
url: '/progress/constructionSchedulePlan/finish/' + id,
method: 'put'
});
};