This commit is contained in:
xiaozhiyong
2023-04-03 16:24:29 +08:00
parent 8d4e877949
commit 5f73c912e1
3 changed files with 16 additions and 28 deletions

View File

@@ -34,14 +34,14 @@ const modifyPrice = (params) => {
};
// 搜索客户
const getRefineryCompanyList = (params) => {
return request.postJson("/oil-user/oilCompanyInfo/getLikeByCompanyType", params);
return request.postJson(
"/oil-user/oilCompanyInfo/getLikeByCompanyType",
params
);
};
// 下单
const orderSave = (params) => {
return request.postJson(
"/oil-refinery/xoilRefineryOrder/save",
params
);
return request.postJson("/oil-refinery/xoilRefineryOrder/save", params);
};
//查看企业产品
const getRefineryProductList = (params) => {
@@ -50,13 +50,13 @@ const getRefineryProductList = (params) => {
params
);
};
//查看炼厂信息
const findByEntity = (params) => {
return request.postJson(
"/oil-refinery/xoilRefineryInfo/findByEntity",
params
);
};
// //查看炼厂信息
// const findByEntity = (params) => {
// return request.postJson(
// "/oil-refinery/xoilRefineryInfo/findByEntity",
// params
// );
// };
export default {
getByPage,
@@ -68,5 +68,5 @@ export default {
getRefineryCompanyList,
orderSave,
getRefineryProductList,
findByEntity
// findByEntity
};