From 006b5f0d5c9d867e6474443905f4e25fcfed6a9c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=86=AF=E6=99=AE?= <18691763612@163.com>
Date: Thu, 9 Apr 2026 11:23:54 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BB=9F=E4=B8=80=E7=9A=84?=
=?UTF-8?q?=E5=AF=BC=E8=88=AA=E5=85=A5=E5=8F=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
index.html | 333 ++++++++++++++++++++++++++++++++++++++++++++++++++++
项目背景.md | 12 +-
2 files changed, 344 insertions(+), 1 deletion(-)
create mode 100644 index.html
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..5553b65
--- /dev/null
+++ b/index.html
@@ -0,0 +1,333 @@
+
+
+
+
+
+健康长庆升级 - 高保真交互原型导航
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/项目背景.md b/项目背景.md
index 272b05d..83fce46 100644
--- a/项目背景.md
+++ b/项目背景.md
@@ -12,6 +12,7 @@
```
prototype-user-app/
+├── index.html # 全局导航页(项目入口)
├── web-admin/ # Web 管理端原型
├── employee-app/ # 员工端 APP 原型
├── emergency-app/ # 健康应急 APP 原型
@@ -23,7 +24,16 @@ prototype-user-app/
└── README.md # 项目说明
```
-### 1.2 各端内部按核心功能模块分目录
+### 1.2 全局导航页(index.html)
+
+根目录 `index.html` 作为项目统一入口,部署到服务器后供研发人员浏览所有原型页面。
+
+- 通过 Tab 切换三大终端(Web 管理端 / 员工端 APP / 健康应急 APP)
+- 以模块卡片展示各业务模块,卡片内列出该模块所有原型页面的跳转链接
+- 数据驱动:所有模块和页面信息维护在 `SITE_MAP` JS 对象中
+- **新增原型页面时,必须同步在 `index.html` 的 `SITE_MAP` 中添加对应条目**
+
+### 1.3 各端内部按核心功能模块分目录
**员工端 APP(employee-app/)17 个模块**
```