...
|
...
|
@@ -2,6 +2,10 @@ import http from './http.js' |
|
|
let baseUrl = 'air-server-transport/transport/route'
|
|
|
let baseUrlBill = 'air-server-transport/transport/bill'
|
|
|
let baseUrlFlight = 'air-server-transport/transport/flight'
|
|
|
let baseUrlFlightPlan = 'air-server-transport/transport/flightplan'
|
|
|
let baseUrlAircraft = 'air-server-transport/transport/aircraft'
|
|
|
let baseUrlAirLineAircraft = 'air-server-transport/transport/airlineaircraft'
|
|
|
|
|
|
|
|
|
|
|
|
|
...
|
...
|
@@ -32,3 +36,27 @@ export const addFlight = params => { return http.post(`${baseUrlFlight}/addFligh |
|
|
export const selectFlight=params=>{return http.get(`${baseUrlFlight}/selectFlight`, params);};
|
|
|
//删除方法
|
|
|
export const editFlight=params=>{return http.put(`${baseUrlFlight}/editFlight`, params);};
|
|
|
|
|
|
//航班当日计划申报
|
|
|
//新增方法
|
|
|
export const addFlightPlan = params => { return http.post(`${baseUrlFlightPlan}/addFlightPlan`, params); };
|
|
|
//查询列表
|
|
|
export const selectFlightPlan=params=>{return http.get(`${baseUrlFlightPlan}/selectFlightPlan`, params);};
|
|
|
//删除方法
|
|
|
export const editFlightPlan=params=>{return http.put(`${baseUrlFlightPlan}/editFlightPlan`, params);};
|
|
|
|
|
|
//通用航空器申报
|
|
|
//新增方法
|
|
|
export const addAircraft = params => { return http.post(`${baseUrlAircraft}/addAircraft`, params); };
|
|
|
//查询列表
|
|
|
export const selectAircraft=params=>{return http.get(`${baseUrlAircraft}/selectAircraft`, params);};
|
|
|
//删除方法
|
|
|
export const editAircraft=params=>{return http.put(`${baseUrlAircraft}/editAircraft`, params);};
|
|
|
|
|
|
//航线航空器申报
|
|
|
//新增方法
|
|
|
export const addAirLineAircraft = params => { return http.post(`${baseUrlAirLineAircraft}/addAirLineAircraft`, params); };
|
|
|
//查询列表
|
|
|
export const editAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);};
|
|
|
//删除方法
|
|
|
export const selectAirLineAircraft=params=>{return http.put(`${baseUrlAirLineAircraft}/selectAirLineAircraft`, params);}; |
|
|
\ No newline at end of file |
...
|
...
|
|