From 3ec8d3625e6fb7614e2ec4bb02ed99a3cdf4cdb7 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 12 Feb 2026 11:28:47 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/jagzwxm/ja_web
---
applications/task-work-order/src/api/zkxt/index.js | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/applications/task-work-order/src/api/zkxt/index.js b/applications/task-work-order/src/api/zkxt/index.js
index 98c05e5..d776f99 100644
--- a/applications/task-work-order/src/api/zkxt/index.js
+++ b/applications/task-work-order/src/api/zkxt/index.js
@@ -18,3 +18,39 @@
data:{"size":100,"current":1},
})
}
+
+// 获取飞手信息
+export const deviceFlyerApi = (data) => {
+ return request({
+ url: `/webservice/webservice/deviceFlyer/queryList`,
+ method: 'post',
+ data: data,
+ })
+}
+
+// 获取飞手详情
+export const deviceFlyerDetailApi = (id) => {
+ return request({
+ url: `/webservice/webservice/deviceFlyer/queryById/${id}`,
+ method: 'get',
+ })
+}
+
+// 获取航线列表
+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',
+ })
+}
+
+
--
Gitblit v1.9.3