From 7c0685ef449c657744794c45b1584ef791144ef2 Mon Sep 17 00:00:00 2001
From: liangbin <15536829364@163.com>
Date: Mon, 26 Jan 2026 18:00:52 +0800
Subject: [PATCH] =?UTF-8?q?feat(=E7=94=A8=E6=88=B7=E4=B8=AD=E5=BF=83):=20?=
=?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE=E5=AD=98=E6=A1=A3=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A2=E5=8F=8A=E7=94=A8=E6=88=B7=E4=B8=AD=E5=BF=83=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 新增项目存档页面,包含项目列表展示和筛选功能
- 完善用户中心页面,添加用户信息展示和导航功能
- 配置路由信息,支持项目存档页面跳转
---
src/pages.json | 7 ++
src/pages/ArchivesRoom/index.vue | 175 +++++++++++++++++++++++++++++++
src/pages/user/index.vue | 93 +++++++++++++++-
3 files changed, 274 insertions(+), 1 deletion(-)
create mode 100644 src/pages/ArchivesRoom/index.vue
diff --git a/src/pages.json b/src/pages.json
index 660cc07..025c290 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -57,6 +57,13 @@
"navigationStyle": "custom"
}
},
+ {
+ "path": "pages/ArchivesRoom/index",
+ "style": {
+ "navigationBarTitleText": "项目存档",
+ "navigationStyle": "custom"
+ }
+ },
{
"path": "pages/user/index",
"style": {
diff --git a/src/pages/ArchivesRoom/index.vue b/src/pages/ArchivesRoom/index.vue
new file mode 100644
index 0000000..15da2a9
--- /dev/null
+++ b/src/pages/ArchivesRoom/index.vue
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+ 项目归档
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+ 施工单位:{{ item.company }}
+ 完工时间:{{ item.completeTime }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/user/index.vue b/src/pages/user/index.vue
index 5a497fe..b6bf223 100644
--- a/src/pages/user/index.vue
+++ b/src/pages/user/index.vue
@@ -1,3 +1,94 @@
+
- 用户中心
+
+
+
+
+
+
+ {{ userInfo.name }}-{{ userInfo.position }}
+ 所属单位:{{ userInfo.unit }}
+ 联系方式:{{ userInfo.phone }}
+
+
+
+
+ 消息中心
+
+
+
+ 项目存档
+
+
+
+ 退出登录
+
+
+
+
\ No newline at end of file