From 233e4fc4f35bd00a36ee34a7fbf5e47b41db26db Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Mon, 17 Nov 2025 09:54:44 +0800
Subject: [PATCH] feat:更新初始化地形
---
src/api/tickets/ticket.js | 17 +++++++++--------
1 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/src/api/tickets/ticket.js b/src/api/tickets/ticket.js
index a50fedc..a8cf0cb 100644
--- a/src/api/tickets/ticket.js
+++ b/src/api/tickets/ticket.js
@@ -97,18 +97,19 @@
})
}
-// 获取机器复核可执行时间
-export const getReCheckTime = (id) => {
- return request({
- url: `/`,
- method: 'get',
- })
-}
-
// 下发任务
export const getCreateEventJob = (id) => {
return request({
url: `/drone-device-core/wayline/waylineJobInfo/createEventJob/${id}`,
method: 'post',
})
+}
+// 导出工单
+export const exportTheTicket = params => {
+ return request({
+ url: `/drone-device-core/jobEvent/downloadEvent`,
+ method: 'get',
+ responseType: 'blob',
+ params,
+ })
}
\ No newline at end of file
--
Gitblit v1.9.3