From 7589cd256fb347f7ff6c86da5dd90ae2dfa4e071 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 26 Jan 2026 17:42:16 +0800
Subject: [PATCH] feat:数据驾驶舱

---
 applications/task-work-order/src/api/zkxt/index.js |   17 +++++++++++++++++
 1 files changed, 17 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 a68ca10..fb32733 100644
--- a/applications/task-work-order/src/api/zkxt/index.js
+++ b/applications/task-work-order/src/api/zkxt/index.js
@@ -28,4 +28,21 @@
 	})
 }
 
+// 获取航线列表
+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