fix : 修复专项资金页面功能细节

This commit is contained in:
2024-05-28 16:36:03 +08:00
parent 63e94af451
commit ba86f54369
10 changed files with 682 additions and 29 deletions

View File

@@ -0,0 +1,22 @@
import request from '@/utils/request.js'
export const getFundDetail = (specialFundId) => {
return request({
url: `/workflow/mosr/special/fund/info/${specialFundId}`,
method: "get"
});
};
export const addFund= (data) => {
return request({
url: '/workflow/mosr/special/fund',
method: "post",
data
});
};
export const resubmitFund= (data) => {
return request({
url: '/workflow/mosr/special/fund/resubmit',
method: "post",
data
});
};