From 4a20996eb12a3351f5c9afab1b64bba28e3008c9 Mon Sep 17 00:00:00 2001 From: "DESKTOP-BLB5287\\FP" <18691763612@163.com> Date: Thu, 9 Apr 2026 10:14:50 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E8=83=8C=E6=99=AF=E4=B8=ADemergency-app=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E7=BB=93=E6=9E=84=E4=B8=BA=E8=A7=92=E8=89=B2=E4=BC=98=E5=85=88?= =?UTF-8?q?=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 项目背景.md | 55 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/项目背景.md b/项目背景.md index 2a1d2fb..4ab3c9a 100644 --- a/项目背景.md +++ b/项目背景.md @@ -61,7 +61,7 @@ web-admin/ **健康应急 APP(emergency-app/)** 底部固定 5 个 Tab:工作台、知识库、AI助手、消息(即时通讯)、我的。 -6 种角色登录后看到的工作台内容不同,其余 4 个 Tab 全角色共享。 +6 种角色登录后看到的工作台、知识库、我的内容不同,AI助手和消息全角色共享。 | 角色 | 英文标识 | 说明 | |------|---------|------| @@ -72,35 +72,42 @@ web-admin/ | 咨询小助手 | assistant | 辅助答疑、常见问题推送、数据统计 | | 管理员 | admin | 应急APP端的管理与配置人员 | +目录按角色优先组织,每个角色包含自己的工作台、知识库、我的页面: + ``` emergency-app/ -├── index.html # 入口页(底部5Tab框架 + 角色切换) -│ -├── workbench/ # 工作台(按角色区分内容) -│ ├── expert/ # 咨询专家工作台 -│ │ └── index.html -│ ├── operator/ # 应急操作人员工作台 -│ │ └── index.html -│ ├── worker/ # 应急工作人员工作台 -│ │ └── index.html -│ ├── onsite/ # 应急驻场人员工作台 -│ │ └── index.html -│ ├── assistant/ # 咨询小助手工作台 -│ │ └── index.html -│ └── admin/ # 管理员工作台 -│ └── index.html -│ -├── knowledge/ # 知识库(全角色共享) -│ └── index.html +├── expert/ # 咨询专家(角色目录) +│ ├── workbench/ # 工作台页面 +│ ├── knowledge/ # 知识库页面 +│ └── profile/ # 我的页面 +├── operator/ # 应急操作人员 +│ ├── workbench/ +│ ├── knowledge/ +│ └── profile/ +├── worker/ # 应急工作人员 +│ ├── workbench/ +│ ├── knowledge/ +│ └── profile/ +├── onsite/ # 应急驻场人员 +│ ├── workbench/ +│ ├── knowledge/ +│ └── profile/ +├── assistant/ # 咨询小助手 +│ ├── workbench/ +│ ├── knowledge/ +│ └── profile/ +├── admin/ # 管理员 +│ ├── workbench/ +│ ├── knowledge/ +│ └── profile/ │ ├── ai-assistant/ # AI助手(全角色共享) │ └── index.html │ -├── message/ # 消息 - 即时通讯聊天(全角色共享) -│ └── index.html -│ -└── profile/ # 我的(全角色共享) - └── index.html +└── message/ # 消息 - 即时通讯聊天(全角色共享) + ├── index.html + ├── contacts.html + └── im-chat.html ``` ---