fix : 修复费用管理功能细节
This commit is contained in:
15
src/api/expense-manage/index.js
Normal file
15
src/api/expense-manage/index.js
Normal 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"
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user