From 4ec9dab8e9c0f6331eb44629e3a4716b7e8ce2ac Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Mon, 02 Feb 2026 14:35:38 +0800
Subject: [PATCH] feat:更新计划申请
---
uniapps/work-wx/src/pages/page/index.vue | 34 ++++++++++++++++++++++++++--------
1 files changed, 26 insertions(+), 8 deletions(-)
diff --git a/uniapps/work-wx/src/pages/page/index.vue b/uniapps/work-wx/src/pages/page/index.vue
index 55e40b8..59c1917 100644
--- a/uniapps/work-wx/src/pages/page/index.vue
+++ b/uniapps/work-wx/src/pages/page/index.vue
@@ -78,7 +78,9 @@
<script setup>
import { onMounted, reactive, ref } from 'vue'
- import lbPng from '@/static/images/lbt.png'
+ import lbPng1 from '@/static/images/lbt1.png'
+ import lbPng2 from '@/static/images/lbt2.png'
+ import lbPng3 from '@/static/images/lbt3.png'
import kyxxPng from '@/static/images/kyxx.png'
import fxsqPng from '@/static/images/fxsq.png'
import flfgPng from '@/static/images/flfg.png'
@@ -91,15 +93,31 @@
import { useAppStore } from "@/store";
const appStore = useAppStore()
-const lbList = reactive([]);
-// lbPng 轮播图 5次
-for (let i = 0; i < 5; i++) {
- lbList.push({
- image: lbPng,
+const lbList = reactive([
+ {
+ image: lbPng1,
title: '法律政策',
link: '/pages/legalPolicy/index',
- })
-}
+ },
+ {
+ image: lbPng2,
+ title: '法律政策',
+ link: '/pages/legalPolicy/index',
+ },
+ {
+ image: lbPng3,
+ title: '法律政策',
+ link: '/pages/legalPolicy/index',
+ },
+]);
+// lbPng 轮播图 5次
+// for (let i = 0; i < 5; i++) {
+// lbList.push({
+// image: lbPng,
+// title: '法律政策',
+// link: '/pages/legalPolicy/index',
+// })
+// }
// const change = (index) => {
// console.log('轮播图切换到第', index + 1, '张');
--
Gitblit v1.9.3