From d04ecbb2aa47d93e05d28bb551e7bad83d97d60f Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Wed, 03 Jun 2026 18:38:55 +0800
Subject: [PATCH] feat: 类型多选改造
---
applications/task-work-order/src/api/zkxt/index.js | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 53 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..6952651 100644
--- a/applications/task-work-order/src/api/zkxt/index.js
+++ b/applications/task-work-order/src/api/zkxt/index.js
@@ -18,3 +18,56 @@
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/getAirlineByScope`,
+ method: 'post',
+ data: data,
+ })
+}
+
+// 获取航线详情
+export const queryAirById = (id) => {
+ return request({
+ url: `/webservice/webservice/airline/queryById/${id}`,
+ method: 'get',
+ })
+}
+
+// ai算法
+export const algorithmGroupedApi = (params) => {
+ return request({
+ url: `/webservice/webservice/algorithm/grouped`,
+ method: 'get',
+ params,
+ })
+}
+
+// 获取字典下拉 task_inspection_type
+export const getDictListApi = (str) => {
+ return request({
+ url: `/system/dict/data/type/${str}`,
+ method: 'get',
+ })
+}
+
+
--
Gitblit v1.9.3