fix : 修复文件下载、专项资金新增、删除功能、流程新增细节优化

This commit is contained in:
2024-06-02 16:12:40 +08:00
parent e9592920e7
commit c416424253
12 changed files with 94 additions and 52 deletions

View File

@@ -38,3 +38,9 @@ export const resubmitFund= (data) => {
data
});
};
export const deleteFund = (id) => {
return request({
url: `/workflow/mosr/special/fund/${id}`,
method: "delete"
});
};