hse修改接口

This commit is contained in:
Teo
2025-08-29 18:06:42 +08:00
parent d3317b0e32
commit c1b891b4b2
2 changed files with 75 additions and 17 deletions

View File

@ -21,7 +21,7 @@ export const totalsupplyplan = (params: any): AxiosPromise => {
export const totalSupplyplanDetails = (id: any): AxiosPromise => {
return request({
url: '/design/totalsupplyplan/' + id,
method: 'get',
method: 'get'
});
};
// 修改物资-总供应计划
@ -33,4 +33,11 @@ export const materialChangeSupplyplan = (data: any): AxiosPromise => {
});
};
// 总供应计划-批量编辑
export const totalSupplyplanBatchEdit = (data: any): AxiosPromise => {
return request({
url: '/design/totalsupplyplan/batchEdit',
method: 'put',
data
});
};