提交
This commit is contained in:
@ -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'
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user