吉安感知网项目-前端
shuishen
2026-01-27 98ff0df343bd4e5d2d5e138a02c6db2b7fa9696b
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: `/deviceFlyer/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',
   })
}