正在显示
1 个修改的文件
包含
29 行增加
和
1 行删除
@@ -2,6 +2,10 @@ import http from './http.js' | @@ -2,6 +2,10 @@ import http from './http.js' | ||
2 | let baseUrl = 'air-server-transport/transport/route' | 2 | let baseUrl = 'air-server-transport/transport/route' |
3 | let baseUrlBill = 'air-server-transport/transport/bill' | 3 | let baseUrlBill = 'air-server-transport/transport/bill' |
4 | let baseUrlFlight = 'air-server-transport/transport/flight' | 4 | let baseUrlFlight = 'air-server-transport/transport/flight' |
5 | +let baseUrlFlightPlan = 'air-server-transport/transport/flightplan' | ||
6 | +let baseUrlAircraft = 'air-server-transport/transport/aircraft' | ||
7 | +let baseUrlAirLineAircraft = 'air-server-transport/transport/airlineaircraft' | ||
8 | + | ||
5 | 9 | ||
6 | 10 | ||
7 | 11 | ||
@@ -31,4 +35,28 @@ export const addFlight = params => { return http.post(`${baseUrlFlight}/addFligh | @@ -31,4 +35,28 @@ export const addFlight = params => { return http.post(`${baseUrlFlight}/addFligh | ||
31 | //查询列表 | 35 | //查询列表 |
32 | export const selectFlight=params=>{return http.get(`${baseUrlFlight}/selectFlight`, params);}; | 36 | export const selectFlight=params=>{return http.get(`${baseUrlFlight}/selectFlight`, params);}; |
33 | //删除方法 | 37 | //删除方法 |
34 | -export const editFlight=params=>{return http.put(`${baseUrlFlight}/editFlight`, params);}; | ||
38 | +export const editFlight=params=>{return http.put(`${baseUrlFlight}/editFlight`, params);}; | ||
39 | + | ||
40 | +//航班当日计划申报 | ||
41 | +//新增方法 | ||
42 | +export const addFlightPlan = params => { return http.post(`${baseUrlFlightPlan}/addFlightPlan`, params); }; | ||
43 | +//查询列表 | ||
44 | +export const selectFlightPlan=params=>{return http.get(`${baseUrlFlightPlan}/selectFlightPlan`, params);}; | ||
45 | +//删除方法 | ||
46 | +export const editFlightPlan=params=>{return http.put(`${baseUrlFlightPlan}/editFlightPlan`, params);}; | ||
47 | + | ||
48 | +//通用航空器申报 | ||
49 | +//新增方法 | ||
50 | +export const addAircraft = params => { return http.post(`${baseUrlAircraft}/addAircraft`, params); }; | ||
51 | +//查询列表 | ||
52 | +export const selectAircraft=params=>{return http.get(`${baseUrlAircraft}/selectAircraft`, params);}; | ||
53 | +//删除方法 | ||
54 | +export const editAircraft=params=>{return http.put(`${baseUrlAircraft}/editAircraft`, params);}; | ||
55 | + | ||
56 | +//航线航空器申报 | ||
57 | +//新增方法 | ||
58 | +export const addAirLineAircraft = params => { return http.post(`${baseUrlAirLineAircraft}/addAirLineAircraft`, params); }; | ||
59 | +//查询列表 | ||
60 | +export const editAirLineAircraft=params=>{return http.get(`${baseUrlAirLineAircraft}/editAirLineAircraft`, params);}; | ||
61 | +//删除方法 | ||
62 | +export const selectAirLineAircraft=params=>{return http.put(`${baseUrlAirLineAircraft}/selectAirLineAircraft`, params);}; |
-
请 注册 或 登录 后发表评论