From e4439e5d0a2cba9983f013bd044fe4e22c7b7077 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Wed, 11 Feb 2026 16:35:06 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 applications/task-work-order/src/api/zkxt/index.js |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/applications/task-work-order/src/api/zkxt/index.js b/applications/task-work-order/src/api/zkxt/index.js
index 3978887..d776f99 100644
--- a/applications/task-work-order/src/api/zkxt/index.js
+++ b/applications/task-work-order/src/api/zkxt/index.js
@@ -22,9 +22,17 @@
 // 获取飞手信息
 export const deviceFlyerApi = (data) => {
 	return request({
-		url: `/deviceFlyer/deviceFlyer/queryList`,
+		url: `/webservice/webservice/deviceFlyer/queryList`,
 		method: 'post',
 		data: data,
+	})
+}
+
+// 获取飞手详情
+export const deviceFlyerDetailApi = (id) => {
+	return request({
+		url: `/webservice/webservice/deviceFlyer/queryById/${id}`,
+		method: 'get',
 	})
 }
 
@@ -37,4 +45,12 @@
 	})
 }
 
+// 获取航线详情
+export const queryAirById = (id) => {
+	return request({
+		url: `/webservice/webservice/airline/queryById/${id}`,
+		method: 'get',
+	})
+}
+
 

--
Gitblit v1.9.3