This commit is contained in:
lixuan
2023-02-20 09:43:26 +08:00
parent 07be5d5e0d
commit af7ef4eae9
3 changed files with 459 additions and 18 deletions

View File

@@ -32,6 +32,31 @@ const modifyPrice = (params) => {
params
);
};
// 搜索客户
const getRefineryCompanyList = (params) => {
return request.postJson("/oil-user/oilCompanyInfo/getLikeByCompanyType", params);
};
// 下单
const orderSave = (params) => {
return request.postJson(
"/oil_refinery/xoilRefineryOrder/save",
params
);
};
//查看企业产品
const getRefineryProductList = (params) => {
return request.postJson(
"/oil-refinery/oilRefineryProduct/getRefineryProductList",
params
);
};
//查看炼厂信息
const findByEntity = (params) => {
return request.postJson(
"/oil-refinery/xoilRefineryInfo/findByEntity",
params
);
};
export default {
getByPage,
@@ -40,4 +65,8 @@ export default {
getByPageRecord,
updateBatchEnable,
modifyPrice,
getRefineryCompanyList,
orderSave,
getRefineryProductList,
findByEntity
};