From 7cf74003780ed129c938b62794f600f9e6e688ce Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Wed, 16 Apr 2025 20:45:45 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/drone-web-manage

---
 src/api/tickets/orderLog.js |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/src/api/tickets/orderLog.js b/src/api/tickets/orderLog.js
index 9ccc471..4f496c2 100644
--- a/src/api/tickets/orderLog.js
+++ b/src/api/tickets/orderLog.js
@@ -50,6 +50,7 @@
   });
 };
 
+
 // 导出
 export const orderLogExport = (data) => {
   return request({
@@ -60,3 +61,31 @@
   });
 };
 
+export const jobStatusNum = () => {
+  return request({
+    url: '/drone-device-core/wayline/orderLog/jobStatusNum',
+    method: 'get'
+  });
+};
+
+
+// 草稿转发布
+export const userPublish = (id) => {
+  return request({
+    url: '/drone-device-core/wayline/orderLog/userPublish',
+    method: 'get',
+    params: { id }, 
+  });
+};
+//删除
+export const deleteOrderLog = (id) => {
+  return request({
+    url: '/drone-device-core/wayline/orderLog/deleteOrderLog',
+    method: 'get',
+    params: { id }, 
+  });
+};
+
+
+
+

--
Gitblit v1.9.3