fix : 修复费用管理功能细节

This commit is contained in:
2024-05-28 23:05:10 +08:00
parent 0ae84ba12e
commit 7f40296f3b
7 changed files with 677 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import request from '@/utils/request.js'
export const addAllocation = (data) => {
return request({
url:'/workflow/mosr/cost/allocation',
method: "post",
data
});
};
export const getAllocationDetail = (allocationId) => {
return request({
url: `/workflow/mosr/cost/allocation/info/${allocationId}`,
method: "get"
});
};