作者 xudada

运输工具通用查询

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'
//航线申报
... ... @@ -20,4 +22,13 @@ 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);};
\ No newline at end of file
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
... ...