feat(expense-management): 新增费用分摊功能并优化项目管理相关页面

This commit is contained in:
dj
2025-03-31 23:14:54 +08:00
parent 244f2e72b4
commit 98d8ea4805
7 changed files with 41 additions and 19 deletions

View File

@@ -9,6 +9,13 @@ export const addAllocation = (data) => {
data
});
};
export const addShare = (data) => {
return request({
url:'/workflow/mosr/cost/share',
method: "post",
data
});
};
export const getAllocationDetail = (allocationId) => {
return request({
url: `/workflow/mosr/cost/allocation/info/${allocationId}`,