feat : 项目实施-台账新增表格更新功能

This commit is contained in:
2024-06-23 00:37:07 +08:00
parent e0ba874746
commit 1a3d2bcf1a
4 changed files with 195 additions and 7 deletions

View File

@@ -145,3 +145,10 @@ export const getPreProcess= () => {
method: "get"
});
};
export const updateLedger = (data) => {
return request({
url: '/workflow/mosr/expense/ledger/replenishment',
method: "post",
data: data
});
};