...
|
...
|
@@ -5,6 +5,9 @@ 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'
|
|
|
let baseUrlPrediction = 'air-server-transport/transport/prediction'
|
|
|
let baseUrlConfirm = 'air-server-transport/transport/confirm'
|
|
|
|
|
|
|
|
|
|
|
|
|
...
|
...
|
@@ -56,7 +59,25 @@ export const editAircraft=params=>{return http.put(`${baseUrlAircraft}/editAircr |
|
|
//航线航空器申报
|
|
|
//新增方法
|
|
|
export const addAirLineAircraft = params => { return http.post(`${baseUrlAirLineAircraft}/addAirLineAircraft`, params); };
|
|
|
//查询列表
|
|
|
export const editAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);};
|
|
|
//删除方法
|
|
|
export const editAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);};
|
|
|
//查询列表
|
|
|
export const selectAirLineAircraft=params=>{return http.put(`${baseUrlAirLineAircraft}/selectAirLineAircraft`, params);};
|
|
|
|
|
|
|
|
|
//进港预报申报prediction
|
|
|
//新增方法
|
|
|
export const addPrediction = params => { return http.post(`${baseUrlPrediction}/addPrediction`, params); };
|
|
|
//删除方法
|
|
|
export const editPrediction=params=>{return http.get(`${baseUrlPrediction}/editPrediction`, params);};
|
|
|
//查询列表
|
|
|
export const selectPrediction=params=>{return http.put(`${baseUrlPrediction}/selectPrediction`, params);};
|
|
|
|
|
|
|
|
|
//进港预报申报confirm
|
|
|
//新增方法
|
|
|
export const addConfirm = params => { return http.post(`${baseUrlConfirm}/addConfirm`, params); };
|
|
|
//删除方法
|
|
|
export const editConfirm=params=>{return http.get(`${baseUrlConfirm}/editConfirm`, params);};
|
|
|
//查询列表
|
|
|
export const selectConfirm=params=>{return http.put(`${baseUrlConfirm}/selectConfirm`, params);}; |
|
|
\ No newline at end of file |
...
|
...
|
|