From 9d0bab9f4d289df5dc7b20e9db9071d5ba7fe6b7 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Tue, 03 Feb 2026 09:46:00 +0800
Subject: [PATCH] feat: pxToRem
---
applications/task-work-order/src/api/zkxt/index.js | 28 ++++++++++++++++++++++++++++
1 files changed, 28 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..d294389 100644
--- a/applications/task-work-order/src/api/zkxt/index.js
+++ b/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',
+ })
+}
+
+
--
Gitblit v1.9.3