产值管理审批流
This commit is contained in:
@ -74,3 +74,27 @@ export const getMonth = (query: any): AxiosPromise => {
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 检查月度产值计划是否提交
|
||||
* @param id
|
||||
* @returns {*}
|
||||
*/
|
||||
export const isSubmit = (id): AxiosPromise => {
|
||||
return request({
|
||||
url: '/out/monthPlan/isSubmit/' + id,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询月度产值计划详细(审批)
|
||||
* @param id
|
||||
*/
|
||||
export const getMonthInfo = (query): AxiosPromise<MonthPlanVO> => {
|
||||
return request({
|
||||
url: '/out/monthPlan/monthInfo',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user