feat : 研发投入资金crud功能完成

This commit is contained in:
2024-09-21 18:19:17 +08:00
parent 10bb9cbc37
commit 090e9a1ea8
4 changed files with 394 additions and 52 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request.js'
export const getResearchFundDetail = (rdFundId) => {
return request({
url: `/workflow/mosr/rd/${rdFundId}`,
method: "get"
});
};
export const addResearchFund= (data) => {
return request({
url: '/workflow/mosr/rd/add',
method: "post",
data
});
};
export const editResearchFund= (data) => {
return request({
url: '/workflow/mosr/rd/update',
method: "post",
data
});
};
export const deleteResearchFund = (rdFundIds) => {
return request({
url: `/workflow/mosr/rd/${rdFundIds}`,
method: "delete"
});
};