正在显示
1 个修改的文件
包含
12 行增加
和
2 行删除
| @@ -7,6 +7,7 @@ let baseUrlAircraft = 'air-server-transport/transport/aircraft' | @@ -7,6 +7,7 @@ let baseUrlAircraft = 'air-server-transport/transport/aircraft' | ||
| 7 | let baseUrlAirLineAircraft = 'air-server-transport/transport/airlineaircraft' | 7 | let baseUrlAirLineAircraft = 'air-server-transport/transport/airlineaircraft' |
| 8 | let baseUrlPrediction = 'air-server-transport/transport/prediction' | 8 | let baseUrlPrediction = 'air-server-transport/transport/prediction' |
| 9 | let baseUrlConfirm = 'air-server-transport/transport/confirm' | 9 | let baseUrlConfirm = 'air-server-transport/transport/confirm' |
| 10 | +let baseUrlSchedule = 'air-server-transport/transport/schedule' | ||
| 10 | 11 | ||
| 11 | 12 | ||
| 12 | 13 | ||
| @@ -74,10 +75,19 @@ export const editPrediction=params=>{return http.get(`${baseUrlPrediction}/editP | @@ -74,10 +75,19 @@ export const editPrediction=params=>{return http.get(`${baseUrlPrediction}/editP | ||
| 74 | export const selectPrediction=params=>{return http.put(`${baseUrlPrediction}/selectPrediction`, params);}; | 75 | export const selectPrediction=params=>{return http.put(`${baseUrlPrediction}/selectPrediction`, params);}; |
| 75 | 76 | ||
| 76 | 77 | ||
| 77 | -//进港预报申报confirm | 78 | +//进港确报申报confirm |
| 78 | //新增方法 | 79 | //新增方法 |
| 79 | export const addConfirm = params => { return http.post(`${baseUrlConfirm}/addConfirm`, params); }; | 80 | export const addConfirm = params => { return http.post(`${baseUrlConfirm}/addConfirm`, params); }; |
| 80 | //删除方法 | 81 | //删除方法 |
| 81 | export const editConfirm=params=>{return http.get(`${baseUrlConfirm}/editConfirm`, params);}; | 82 | export const editConfirm=params=>{return http.get(`${baseUrlConfirm}/editConfirm`, params);}; |
| 82 | //查询列表 | 83 | //查询列表 |
| 83 | -export const selectConfirm=params=>{return http.put(`${baseUrlConfirm}/selectConfirm`, params);}; | ||
| 84 | +export const selectConfirm=params=>{return http.put(`${baseUrlConfirm}/selectConfirm`, params);}; | ||
| 85 | + | ||
| 86 | + | ||
| 87 | +//进港航班配置 | ||
| 88 | +//新增方法 | ||
| 89 | +export const addSchedule = params => { return http.post(`${baseUrlSchedule}/addSchedule`, params); }; | ||
| 90 | +//删除方法 | ||
| 91 | +export const editSchedule=params=>{return http.get(`${baseUrlSchedule}/editSchedule`, params);}; | ||
| 92 | +//查询列表 | ||
| 93 | +export const selectSchedule=params=>{return http.put(`${baseUrlSchedule}/selectSchedule`, params);}; |
-
请 注册 或 登录 后发表评论