新增统一的导航入口

This commit is contained in:
冯普
2026-04-09 11:23:54 +08:00
parent ca5d88a43f
commit 006b5f0d5c
2 changed files with 344 additions and 1 deletions
+11 -1
View File
@@ -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 各端内部按核心功能模块分目录
**员工端 APPemployee-app/17 个模块**
```