|
|
import http from './http.js'
|
|
|
let baseUrl = 'air-server-transport/transport/route'
|
|
|
let baseUrlBill = 'air-server-transport/transport/bill'
|
|
|
let baseUrlFlight = 'air-server-transport/transport/flight'
|
|
|
|
|
|
|
|
|
|
|
|
//航线申报
|
...
|
...
|
@@ -21,3 +23,12 @@ export const addBill = params => { return http.post(`${baseUrlBill}/addBill`, p |
|
|
export const selectBill=params=>{return http.get(`${baseUrlBill}/selectBill`, params);};
|
|
|
//删除方法
|
|
|
export const editBill=params=>{return http.put(`${baseUrlBill}/editBill`, params);};
|
|
|
|
|
|
|
|
|
//航班申报
|
|
|
//新增方法
|
|
|
export const addFlight = params => { return http.post(`${baseUrlFlight}/addFlight`, params); };
|
|
|
//查询列表
|
|
|
export const selectFlight=params=>{return http.get(`${baseUrlFlight}/selectFlight`, params);};
|
|
|
//删除方法
|
|
|
export const editFlight=params=>{return http.put(`${baseUrlFlight}/editFlight`, params);}; |
|
|
\ No newline at end of file |
...
|
...
|
|