From f5234cf420f5c491c6871872c1764707ec08a679 Mon Sep 17 00:00:00 2001
From: xhc <15171145581@163.com>
Date: Fri, 23 May 2025 16:31:00 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8E=86=E5=8F=B2=E5=B7=A1=E6=A3=80=E9=9D=99?=
=?UTF-8?q?=E6=80=81=E8=BF=98=E5=8E=9F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.vue | 16 +++++-
src/pages.json | 28 +++++-----
src/pages/history/history.vue | 68 +++++++++++++++++++++++
src/pages/index/index.vue | 12 ++--
src/pages/knowledgeBase/knowledgeBase.vue | 12 +---
src/pages/message/message.vue | 6 +-
src/pages/my/my.vue | 9 ++-
7 files changed, 116 insertions(+), 35 deletions(-)
create mode 100644 src/pages/history/history.vue
diff --git a/src/App.vue b/src/App.vue
index a9446d8..8c3d7fa 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,7 +2,7 @@
* @Author: XHC
* @Date: 2025-05-19 10:21:48
* @LastEditors: XHC
- * @LastEditTime: 2025-05-23 14:26:43
+ * @LastEditTime: 2025-05-23 16:02:16
* @Description:
-->
+
+
\ No newline at end of file
diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue
index f05e6db..5016133 100644
--- a/src/pages/index/index.vue
+++ b/src/pages/index/index.vue
@@ -2,7 +2,7 @@
* @Author: XHC
* @Date: 2025-05-19 11:07:37
* @LastEditors: XHC
- * @LastEditTime: 2025-05-23 14:55:21
+ * @LastEditTime: 2025-05-23 16:03:02
* @Description: 首页
-->
@@ -51,7 +51,7 @@
-
+
历史巡检
HISTORICAL INSPECTION
@@ -175,14 +175,18 @@ const changeTitle = (index) => {
};
const changeCategory = (index) => {
categoryCurIndex.value = index
+}
+// 历史巡检跳转
+const goToHistory = () => {
+ uni.navigateTo({
+ url: '/pages/history/history'
+ });
}