吉安感知网项目-前端
张含笑
2026-01-27 dd57e0e9a989e7ee8b3e3473a7ee6a1dff06a4ae
applications/task-work-order/src/api/zkxt/index.js
@@ -18,3 +18,31 @@
      data:{"size":100,"current":1},
   })
}
// 获取飞手信息
export const deviceFlyerApi = (data) => {
   return request({
      url: `/webservice/webservice/deviceFlyer/queryList`,
      method: 'post',
      data: data,
   })
}
// 获取航线列表
export const airlineListApi = (data) => {
   return request({
      url: `/webservice/webservice/airline/queryList`,
      method: 'post',
      data: data,
   })
}
// 获取航线详情
export const queryAirById = (id) => {
   return request({
      url: `/webservice/webservice/airline/queryById/${id}`,
      method: 'get',
   })
}