...
|
...
|
@@ -7,6 +7,7 @@ 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'
|
|
|
let baseUrlSchedule = 'air-server-transport/transport/schedule'
|
|
|
|
|
|
|
|
|
|
...
|
...
|
@@ -74,10 +75,19 @@ export const editPrediction=params=>{return http.get(`${baseUrlPrediction}/editP |
|
|
export const selectPrediction=params=>{return http.put(`${baseUrlPrediction}/selectPrediction`, params);};
|
|
|
|
|
|
|
|
|
//进港预报申报confirm
|
|
|
//进港确报申报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 |
|
|
export const selectConfirm=params=>{return http.put(`${baseUrlConfirm}/selectConfirm`, params);};
|
|
|
|
|
|
|
|
|
//进港航班配置
|
|
|
//新增方法
|
|
|
export const addSchedule = params => { return http.post(`${baseUrlSchedule}/addSchedule`, params); };
|
|
|
//删除方法
|
|
|
export const editSchedule=params=>{return http.get(`${baseUrlSchedule}/editSchedule`, params);};
|
|
|
//查询列表
|
|
|
export const selectSchedule=params=>{return http.put(`${baseUrlSchedule}/selectSchedule`, params);}; |
|
|
\ No newline at end of file |
...
|
...
|
|