This commit is contained in:
xiaozhiyong
2023-02-21 18:09:32 +08:00
parent e27c49a6b9
commit d2a10fe313
3 changed files with 128 additions and 6 deletions

View File

@@ -30,6 +30,14 @@ const update = (params) => {
const getCascaderList = () => {
return request.get("/oil-finance/internalCompany/getCascaderList");
};
// 审核
const audit = (params) => {
return request.postJson(
"/oil-finance/oilCompanyAccountReverse/refinery/audit",
params
);
};
//公司 远程搜索
// const getLikeByNameSuccess = (params) => {
// return request.postJson(
@@ -45,5 +53,6 @@ export default {
save,
update,
getCascaderList,
audit,
// getLikeByNameSuccess,
};