进度管理产值管理

This commit is contained in:
Teo
2025-08-01 20:09:57 +08:00
parent bbc927edba
commit 4a5856f614
21 changed files with 2748 additions and 211 deletions

View File

@ -61,3 +61,16 @@ export const delMonthPlan = (id: string | number | Array<string | number>) => {
method: 'delete'
});
};
/**
* 获取月度产值计划
* @param query
* @returns {*}
*/
export const getMonth = (query: any): AxiosPromise => {
return request({
url: '/out/monthPlan/info',
method: 'get',
params: query
});
};