From de9d936f5b8489eb988ff9ef4fd9fea0a8f4a960 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Fri, 23 Jan 2026 11:06:15 +0800
Subject: [PATCH] feat:更新小程序
---
uniapps/work-wx/src/api/index.js | 9 +++++++++
uniapps/work-wx/src/subPackages/flightApplication/add.vue | 13 ++++++++-----
uniapps/work-wx/src/pages/page/index.vue | 25 +++++++++++++++++++------
3 files changed, 36 insertions(+), 11 deletions(-)
diff --git a/uniapps/work-wx/src/api/index.js b/uniapps/work-wx/src/api/index.js
index 7ee400f..ef3f6d0 100644
--- a/uniapps/work-wx/src/api/index.js
+++ b/uniapps/work-wx/src/api/index.js
@@ -167,6 +167,14 @@
})
}
+// 审批状态
+export const flyActivityStatusApi = () => {
+ return request({
+ url: `/system/dict/data/type/fly_activity_status`,
+ method: 'get'
+ })
+}
+
// 无人机厂商
export const manufacturerInfoApi = data => {
return request({
@@ -176,3 +184,4 @@
})
}
+
diff --git a/uniapps/work-wx/src/pages/page/index.vue b/uniapps/work-wx/src/pages/page/index.vue
index d0551a7..1e5e4a8 100644
--- a/uniapps/work-wx/src/pages/page/index.vue
+++ b/uniapps/work-wx/src/pages/page/index.vue
@@ -11,6 +11,9 @@
indicatorInactiveColor="#fff"
indicatorPosition="center"
></u-swiper>
+ <view class="lb-bottom">
+ <image :src="lbBottomPng" />
+ </view>
<u-grid :col="4" :border="false" class="grid" @click="gridClick">
<u-grid-item v-for="(baseListItem,baseListIndex) in baseList" :key="baseListIndex">
<u-image :src="baseListItem.src" :width="26" :height="26"></u-image>
@@ -75,12 +78,13 @@
<script setup>
import { onMounted, reactive, ref } from 'vue'
- import lbPng from '@/static/images/lb.png'
+ import lbPng from '@/static/images/lbt.png'
import kyxxPng from '@/static/images/kyxx.png'
import fxsqPng from '@/static/images/fxsq.png'
import flfgPng from '@/static/images/flfg.png'
import zczdPng from '@/static/images/zczd.png'
import docSvg from '@/static/images/doc.png'
+ import lbBottomPng from '@/static/images/lb_bottom.png'
import { sysNoticePageInfoApi, droneFlightTaskApi } from '@/api/index'
const lbList = reactive([]);
// lbPng 轮播图 5次
@@ -230,8 +234,17 @@
height: 100%;
display: flex;
flex-direction: column;
- :deep(.u-swiper) {
- border-radius: 0 0 100px 100px;
+ position: relative;
+
+ .lb-bottom {
+ position: absolute;
+ top: 370rpx;
+ left: 0;
+ width: 100%;
+ image {
+ width: 100%;
+ height: 32rpx;
+ }
}
:deep(.u-grid) {
margin-top: 40rpx;
@@ -268,9 +281,9 @@
.title {
padding: 40rpx 40rpx 0rpx 0rpx;
font-family: Source Han Sans CN, Source Han Sans CN;
- font-weight: 500;
- font-size: 16px;
- color: #222324;
+ font-weight: bolder;
+ font-size: 32rpx;
+ color: #1D2129;
}
}
.card {
diff --git a/uniapps/work-wx/src/subPackages/flightApplication/add.vue b/uniapps/work-wx/src/subPackages/flightApplication/add.vue
index a2ce4ab..54fc756 100644
--- a/uniapps/work-wx/src/subPackages/flightApplication/add.vue
+++ b/uniapps/work-wx/src/subPackages/flightApplication/add.vue
@@ -787,12 +787,15 @@
border-radius: 8rpx 8rpx 8rpx 8rpx;
// margin-bottom: 20rpx;
}
- .label-tip {
- font-family: Source Han Sans CN, Source Han Sans CN;
- font-weight: 400;
- font-size: 10px;
- color: #3A3A3A;
+ .custom-label {
+ .label-tip {
+ font-family: Source Han Sans CN, Source Han Sans CN;
+ font-weight: 400;
+ font-size: 18rpx;
+ color: #3A3A3A;
+ }
}
+
.attention {
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 400;
--
Gitblit v1.9.3