正在显示
1 个修改的文件
包含
23 行增加
和
2 行删除
@@ -5,6 +5,9 @@ let baseUrlFlight = 'air-server-transport/transport/flight' | @@ -5,6 +5,9 @@ let baseUrlFlight = 'air-server-transport/transport/flight' | ||
5 | let baseUrlFlightPlan = 'air-server-transport/transport/flightplan' | 5 | let baseUrlFlightPlan = 'air-server-transport/transport/flightplan' |
6 | let baseUrlAircraft = 'air-server-transport/transport/aircraft' | 6 | 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' | ||
9 | +let baseUrlConfirm = 'air-server-transport/transport/confirm' | ||
10 | + | ||
8 | 11 | ||
9 | 12 | ||
10 | 13 | ||
@@ -56,7 +59,25 @@ export const editAircraft=params=>{return http.put(`${baseUrlAircraft}/editAircr | @@ -56,7 +59,25 @@ export const editAircraft=params=>{return http.put(`${baseUrlAircraft}/editAircr | ||
56 | //航线航空器申报 | 59 | //航线航空器申报 |
57 | //新增方法 | 60 | //新增方法 |
58 | export const addAirLineAircraft = params => { return http.post(`${baseUrlAirLineAircraft}/addAirLineAircraft`, params); }; | 61 | export const addAirLineAircraft = params => { return http.post(`${baseUrlAirLineAircraft}/addAirLineAircraft`, params); }; |
59 | -//查询列表 | 62 | +//删除方法 |
60 | export const editAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);}; | 63 | export const editAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);}; |
64 | +//查询列表 | ||
65 | +export const selectAirLineAircraft=params=>{return http.put(`${baseUrlAirLineAircraft}/selectAirLineAircraft`, params);}; | ||
66 | + | ||
67 | + | ||
68 | +//进港预报申报prediction | ||
69 | +//新增方法 | ||
70 | +export const addPrediction = params => { return http.post(`${baseUrlPrediction}/addPrediction`, params); }; | ||
61 | //删除方法 | 71 | //删除方法 |
62 | -export const selectAirLineAircraft=params=>{return http.put(`${baseUrlAirLineAircraft}/selectAirLineAircraft`, params);}; | ||
72 | +export const editPrediction=params=>{return http.get(`${baseUrlPrediction}/editPrediction`, params);}; | ||
73 | +//查询列表 | ||
74 | +export const selectPrediction=params=>{return http.put(`${baseUrlPrediction}/selectPrediction`, params);}; | ||
75 | + | ||
76 | + | ||
77 | +//进港预报申报confirm | ||
78 | +//新增方法 | ||
79 | +export const addConfirm = params => { return http.post(`${baseUrlConfirm}/addConfirm`, params); }; | ||
80 | +//删除方法 | ||
81 | +export const editConfirm=params=>{return http.get(`${baseUrlConfirm}/editConfirm`, params);}; | ||
82 | +//查询列表 | ||
83 | +export const selectConfirm=params=>{return http.put(`${baseUrlConfirm}/selectConfirm`, params);}; |
-
请 注册 或 登录 后发表评论