feat: 账户管理充值

This commit is contained in:
douqi
2023-02-22 09:20:29 +08:00
parent 822f000c1d
commit d53a293bf4
3 changed files with 71 additions and 21 deletions

View File

@@ -17,6 +17,13 @@ const updateAccountState = (params) => {
const get = (id) => {
return request.get(`/oil-finance/oilCompanyAccount/get/${id}`);
};
//保存
const save = (params) => {
return request.postJson(
"/oil-finance/oilCompanyAccountReverse/save",
params
);
};
// //详情
// const getCompanyAccountRecord = (params) => {
// return request.postJson(
@@ -27,5 +34,6 @@ const get = (id) => {
export default {
getByPage,
updateAccountState,
get
get,
save
};