From 1d552a3bad95caae4af15322df28e6240b797693 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Thu, 13 Aug 2026 15:32:06 +0800
Subject: [PATCH] feat: app视频封面图

---
 uniapps/work-wx/src/api/index.js |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/uniapps/work-wx/src/api/index.js b/uniapps/work-wx/src/api/index.js
index ef3f6d0..ca790e7 100644
--- a/uniapps/work-wx/src/api/index.js
+++ b/uniapps/work-wx/src/api/index.js
@@ -1,6 +1,15 @@
 // 小程序相关接口
 import { request } from "@/utils/request"
 
+// 轮播图
+export const getLBList = data => {
+  return request({
+    url: `/webservice/miniProgramBannerManager/queryList`,
+    method: 'post',
+    data,
+  })
+}
+
 // 通知公告列表 noticeType=2 政策制度 1法律法规
 export const sysNoticePageInfoApi = data => {
   return request({
@@ -61,6 +70,22 @@
     method: 'get'
   })
 }
+export const takeoffOperationApi = data => {
+  return request({
+    url: `/webservice/flightPlan/takeoffOperation`,
+    method: 'post',
+    data,
+  })
+}
+
+export const flightApprovalApi = data => {
+  return request({
+    url: `/webservice/flightPlan/flightApproval`,
+    method: 'post',
+    data,
+  })
+}
+
 
 // 航空器注册
 export const aircraftInfoSaveApi = data => {
@@ -84,6 +109,14 @@
     url: `/webservice/flightPlan/save`,
     method: 'post',
     data,
+  })
+}
+
+// 飞行计划提交
+export const flightPlanSubmitApi = id => {
+  return request({
+    url: `/webservice/flightPlan/submit/${id}`,
+    method: 'post',
   })
 }
 
@@ -175,6 +208,14 @@
   })
 }
 
+// 无人机起飞状态
+export const flyActivityTakeoffStatusApi = () => {
+  return request({
+    url: `/system/dict/data/type/fly_activity_takeoff_status`,
+    method: 'get'
+  })
+}
+
 // 无人机厂商
 export const manufacturerInfoApi = data => {
   return request({

--
Gitblit v1.9.3