This commit is contained in:
xiaozhiyong
2023-02-21 16:24:12 +08:00
parent fac8b4971e
commit 0546d42422
21 changed files with 982 additions and 719 deletions

View File

@@ -13,7 +13,13 @@ const liekQuery = (query) => {
);
};
//公司账户详情
const getByCompanyId = (query) => {
return request.get(`/oil-finance/oilCompanyAccount/getByCompanyId/${query}`);
};
export default {
getRefineryCompanyList,
liekQuery,
getByCompanyId,
};

View File

@@ -10,12 +10,9 @@ const getByPage = (params) => {
const get = (query) => {
return request.get(`/oil-finance/oilCompanyAccountReverse/get/${query}`);
};
//公司详情
const getByCompanyId = (query) => {
return request.get(`/oil-finance/oilCompanyAccount/getByCompanyId/${query}`);
};
//公司财务详情
const getByCompanyIdSec = (query) => {
const getByCompanyId = (query) => {
return request.get(`/oil-user/oilCompanyFinance/getByCompanyId/${query}`);
};
// 新增
@@ -47,7 +44,6 @@ export default {
getByCompanyId,
save,
update,
getByCompanyIdSec,
getCascaderList,
getLikeByNameSuccess,
};

View File

@@ -10,12 +10,8 @@ const getByPage = (params) => {
const get = (query) => {
return request.get(`/oil-finance/oilCompanyAccountReverse/get/${query}`);
};
//详情
const getByCompanyId = (query) => {
return request.get(`/oil-finance/oilCompanyAccount/getByCompanyId/${query}`);
};
export default {
getByPage,
get,
getByCompanyId,
};