fix : 修复分摊汇总及编辑功能

This commit is contained in:
2024-06-06 02:01:36 +08:00
parent ec4c61d758
commit 031a08e65c
4 changed files with 106 additions and 23 deletions

View File

@@ -38,3 +38,19 @@ export const getProjectOption = () => {
method: "get"
});
};
export const getAllocationCollect = (allocationId) => {
return request({
url: '/workflow/mosr/cost/allocation/collect',
method: "get",
params:{
allocationId:allocationId
}
});
};
export const editAllocation = (data) => {
return request({
url: '/workflow/mosr/cost/allocation/edit',
method: "post",
data
});
};