Merge branch 'xiaozy_产品列表' of http://121.196.213.68:3000/xiaozhiyong/refinery-admin into lixuan
This commit is contained in:
@@ -13,7 +13,11 @@ const billSave = (params) => {
|
||||
};
|
||||
//修改提货单
|
||||
const update = (params) => {
|
||||
return request.putJson("/oil-refinery/xoilRefineryDelivery/update", params);
|
||||
return request.postPut("/oil-refinery/xoilRefineryDelivery/update", params);
|
||||
};
|
||||
//修改提货单
|
||||
const orderUpdate = (params) => {
|
||||
return request.postPut("/oil-refinery/xoilRefineryOrder/update", params);
|
||||
};
|
||||
//查看订单信息
|
||||
const findByOrderId = (id) => {
|
||||
@@ -21,7 +25,7 @@ const findByOrderId = (id) => {
|
||||
};
|
||||
//修改提货单
|
||||
const deleteBill = (params) => {
|
||||
return request.putJson("/oil-refinery/xoilRefineryDelivery/delete", params);
|
||||
return request.postPut("/oil-refinery/xoilRefineryDelivery/delete", params);
|
||||
};
|
||||
//下单
|
||||
const orderSuccess = (params) => {
|
||||
@@ -33,13 +37,20 @@ const orderLock = (params) => {
|
||||
};
|
||||
//确认下单
|
||||
const orderComplete = (params) => {
|
||||
return request.postJson("/oil_refinery/xoilRefineryOrder/orderComplete", params);
|
||||
return request.postJson("/oil-refinery/xoilRefineryOrder/orderComplete", params);
|
||||
};
|
||||
//订单退款
|
||||
const orderRefund = (params) => {
|
||||
return request.postJson("/oil-refinery/xoilRefineryOrder/orderRefund", params);
|
||||
};
|
||||
//油批中心信息
|
||||
const getlnfoByld = (params) => {
|
||||
return request.postJson("/oil-refinery/xoilRefineryCenterAccount/getInfoById", params);
|
||||
};
|
||||
//油批中心列表
|
||||
const getRecordsByActld = (params) => {
|
||||
return request.postJson("/oil-refinery/xoilRefineryCenterAccount/getRecordsByActId", params);
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default {
|
||||
getByPage,
|
||||
@@ -50,5 +61,9 @@ export default {
|
||||
deleteBill,
|
||||
orderSuccess,
|
||||
orderLock,
|
||||
orderComplete
|
||||
orderComplete,
|
||||
orderRefund,
|
||||
orderUpdate,
|
||||
getlnfoByld,
|
||||
getRecordsByActld
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user