更新
This commit is contained in:
@@ -10,10 +10,14 @@ 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) => {
|
||||
return request.get(`/oil-user/oilCompanyFinance/getByCompanyId/${query}`);
|
||||
};
|
||||
// 新增
|
||||
const save = (params) => {
|
||||
return request.postJson("/oil-finance/oilCompanyAccountReverse/save", params);
|
||||
@@ -25,6 +29,17 @@ const update = (params) => {
|
||||
params
|
||||
);
|
||||
};
|
||||
// 企业收款账户
|
||||
const getCascaderList = () => {
|
||||
return request.get("/oil-finance/internalCompany/getCascaderList");
|
||||
};
|
||||
//公司 远程搜索
|
||||
const getLikeByNameSuccess = (params) => {
|
||||
return request.postJson(
|
||||
"/oil-user/oilCompanyInfo/getLikeByNameSuccess",
|
||||
params
|
||||
);
|
||||
};
|
||||
|
||||
export default {
|
||||
getByPage,
|
||||
@@ -32,4 +47,7 @@ export default {
|
||||
getByCompanyId,
|
||||
save,
|
||||
update,
|
||||
getByCompanyIdSec,
|
||||
getCascaderList,
|
||||
getLikeByNameSuccess,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user