作者 小范

请求方式put改为post

... ... @@ -37,7 +37,7 @@ export const addRoute = params => { return http.post(`${baseUrl}/addRoute`, par
//查询列表
export const selectRoute=params=>{return http.get(`${baseUrl}/selectRoute`, params);};
//删除方法
export const editRoute=params=>{return http.put(`${baseUrl}/editRoute`, params);};
export const editRoute=params=>{return http.post(`${baseUrl}/editRoute`, params);};
... ... @@ -48,7 +48,7 @@ export const addBill = params => { return http.post(`${baseUrlBill}/addBill`, p
//查询列表
export const selectBill=params=>{return http.get(`${baseUrlBill}/selectBill`, params);};
//删除方法
export const editBill=params=>{return http.put(`${baseUrlBill}/editBill`, params);};
export const editBill=params=>{return http.post(`${baseUrlBill}/editBill`, params);};
//航班申报
... ... @@ -60,7 +60,7 @@ export const sendFlight = params => { return http.post(`${baseUrlFlight}/sendFli
//查询列表
export const selectFlight=params=>{return http.get(`${baseUrlFlight}/selectFlight`, params);};
//删除方法
export const editFlight=params=>{return http.put(`${baseUrlFlight}/editFlight`, params);};
export const editFlight=params=>{return http.post(`${baseUrlFlight}/editFlight`, params);};
//航班当日计划申报
//新增方法
... ... @@ -71,7 +71,7 @@ export const sendFlightPlan = params => { return http.post(`${baseUrlFlightPlan}
//查询列表
export const selectFlightPlan=params=>{return http.get(`${baseUrlFlightPlan}/selectFlightPlan`, params);};
//删除方法
export const editFlightPlan=params=>{return http.put(`${baseUrlFlightPlan}/editFlightPlan`, params);};
export const editFlightPlan=params=>{return http.post(`${baseUrlFlightPlan}/editFlightPlan`, params);};
//通用航空器申报
//新增方法
... ... @@ -81,7 +81,7 @@ export const sendAircraft = params => { return http.post(`${baseUrlAircraft}/sen
//查询列表
export const selectAircraft=params=>{return http.get(`${baseUrlAircraft}/selectAircraft`, params);};
//删除方法
export const editAircraft=params=>{return http.put(`${baseUrlAircraft}/editAircraft`, params);};
export const editAircraft=params=>{return http.post(`${baseUrlAircraft}/editAircraft`, params);};
//变更申请
export const changeAircraft = params => { return http.post(`${baseUrlAircraft}/changeAircraft`, params); };
//撤销申请
... ... @@ -93,7 +93,7 @@ export const addAirLineAircraft = params => { return http.post(`${baseUrlAirLine
//保存并发送
export const sendAirLineAircraft = params => { return http.post(`${baseUrlAirLineAircraft}/sendAirLineAircraft`, params); };
//删除方法
export const editAirLineAircraft=params=>{return http.put(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);};
export const editAirLineAircraft=params=>{return http.post(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);};
//查询列表
export const selectAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/selectAirLineAircraft`, params);};
//变更申请
... ... @@ -110,7 +110,7 @@ export const addPrediction = params => { return http.post(`${baseUrlPrediction}/
export const sendPredictionIn = params => { return http.post(`${baseUrlPrediction}/sendPredictionIn`, params); };
//删除方法
export const editPrediction=params=>{return http.put(`${baseUrlPrediction}/editPrediction`, params);};
export const editPrediction=params=>{return http.post(`${baseUrlPrediction}/editPrediction`, params);};
//查询列表
export const selectPrediction=params=>{return http.get(`${baseUrlPrediction}/selectPrediction`, params);};
... ... @@ -124,7 +124,7 @@ export const sendConfirmIn = params => { return http.post(`${baseUrlConfirm}/sen
//删除方法
export const editConfirm=params=>{return http.put(`${baseUrlConfirm}/editConfirm`, params);};
export const editConfirm=params=>{return http.post(`${baseUrlConfirm}/editConfirm`, params);};
//查询列表
export const selectConfirm=params=>{return http.get(`${baseUrlConfirm}/selectConfirm`, params);};
... ... @@ -141,7 +141,7 @@ export const sendConfirmOut = params => { return http.post(`${baseUrlConfirm}/se
//新增方法
export const addSchedule = params => { return http.post(`${baseUrlSchedule}/addSchedule`, params); };
//删除方法
export const editSchedule=params=>{return http.put(`${baseUrlSchedule}/editSchedule`, params);};
export const editSchedule=params=>{return http.post(`${baseUrlSchedule}/editSchedule`, params);};
//查询列表
export const selectSchedule=params=>{return http.get(`${baseUrlSchedule}/selectSchedule`, params);};
... ... @@ -155,7 +155,7 @@ export const selectLongTimePlan=params=>{return http.get(`${baseUrlLongtimeplan}
//新增方法
export const addBillPerson = params => { return http.post(`${baseUrlBillperson}/addBillPerson`, params); };
//删除方法
export const editBillPerson=params=>{return http.put(`${baseUrlBillperson}/editBillPerson`, params);};
export const editBillPerson=params=>{return http.post(`${baseUrlBillperson}/editBillPerson`, params);};
//查询列表
export const selectBillPerson=params=>{return http.get(`${baseUrlBillperson}/selectBillPerson`, params);};
//国家代码
... ...