fix: 全仓截图脚本与截图质量修复(assistant/expert/health-monitor 多处截图脚本中 index-v2.html 等失效页面引用改回现存文件名并清理孤儿任务与无引用截图;weight-main-v2 初始化改为解析 ?type= 参数修复设计总览六种目标状态截图雷同问题,蓝牙秤截图任务补 #paired 参数并重拍 weight-main 系列与 bluetooth-scale 共10张截图、删除 weight-main-menu;专家端与管理端补拍 PRD 引用但从未生成的视频进行中截图 video-in-progress.jpg 与 video-detail-in-progress.jpg;体重管理 PRD 修复两处截图断链,设计总览主页节移除切换菜单卡片,各模块 CHANGELOG 同步记录)
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
# 咨询小助手端(健康应急APP)变更记录
|
||||
|
||||
## 2026-09-07
|
||||
|
||||
### fix: 截图脚本失效引用修复与孤儿截图清理
|
||||
|
||||
**涉及文件:**
|
||||
- `doc/screenshot.mjs`(修改):workbench / knowledge / profile 三个任务的 `index-v2.html` 引用已随页面改名失效,恢复为现存 `index.html`;删除 `consult-done.html` 任务(页面已不存在)
|
||||
- `doc/screenshots/consult-done.jpg`(删除):来源页面已删除且无任何文档引用,孤儿截图
|
||||
|
||||
## 2026-04-10
|
||||
|
||||
### feat: 新增"我的"个人中心模块
|
||||
|
||||
@@ -12,20 +12,19 @@ const screenshotsDir = path.join(__dirname, 'screenshots');
|
||||
// 小助手端所有页面
|
||||
const pages = [
|
||||
// 工作台
|
||||
{ file: '../../assistant/workbench/index-v2.html', name: 'index' },
|
||||
{ file: '../../assistant/workbench/index.html', name: 'index' },
|
||||
{ file: '../../assistant/workbench/text-chat.html', name: 'text-chat' },
|
||||
{ file: '../../assistant/workbench/text-chat-done.html', name: 'text-chat-done' },
|
||||
{ file: '../../assistant/workbench/consult-done.html', name: 'consult-done' },
|
||||
{ file: '../../assistant/workbench/text-consult-done.html', name: 'text-consult-done' },
|
||||
{ file: '../../assistant/workbench/text-consult-timeout.html', name: 'text-consult-timeout' },
|
||||
{ file: '../../assistant/workbench/employee-profile.html', name: 'employee-profile' },
|
||||
{ file: '../../assistant/workbench/end-consult-dialog.html', name: 'end-consult-dialog' },
|
||||
{ file: '../../assistant/workbench/push-expert.html', name: 'push-expert' },
|
||||
// 知识库
|
||||
{ file: '../../assistant/knowledge/index-v2.html', name: 'knowledge-index' },
|
||||
{ file: '../../assistant/knowledge/index.html', name: 'knowledge-index' },
|
||||
{ file: '../../assistant/knowledge/detail.html', name: 'knowledge-detail' },
|
||||
// 个人中心
|
||||
{ file: '../../assistant/profile/index-v2.html', name: 'profile-index' },
|
||||
{ file: '../../assistant/profile/index.html', name: 'profile-index' },
|
||||
{ file: '../../assistant/profile/edit-profile.html', name: 'edit-profile' },
|
||||
{ file: '../../assistant/profile/change-pwd.html', name: 'change-pwd' },
|
||||
];
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 30 KiB |
@@ -1,5 +1,13 @@
|
||||
# 咨询专家端(健康应急APP)变更记录
|
||||
|
||||
## 2026-09-07
|
||||
|
||||
### fix: 截图脚本失效引用修复并补拍视频进行中截图
|
||||
|
||||
**涉及文件:**
|
||||
- `doc/screenshot.mjs`(修改):workbench / knowledge / profile / ai-assistant / message 五处 `index-v2.html` 引用已随页面改名失效,恢复为现存 `index.html`;新增 `video-in-progress.html → video-in-progress.jpg` 任务
|
||||
- `doc/screenshots/video-in-progress.jpg`(新增):PRD 第 8 节一直引用该图但从未生成(脚本漏拍此页),按脚本规范补拍
|
||||
|
||||
## 2026-04-10
|
||||
|
||||
### fix: 修复共用消息页面和AI助手页面的工作台跳转逻辑
|
||||
|
||||
@@ -12,21 +12,22 @@ const screenshotsDir = path.join(__dirname, 'screenshots');
|
||||
// 专家端所有页面
|
||||
const pages = [
|
||||
// 工作台
|
||||
{ file: '../../expert/workbench/index-v2.html', name: 'index' },
|
||||
{ file: '../../expert/workbench/index.html', name: 'index' },
|
||||
{ file: '../../expert/workbench/text-chat.html', name: 'text-chat' },
|
||||
{ file: '../../expert/workbench/text-chat-done.html', name: 'text-chat-done' },
|
||||
{ file: '../../expert/workbench/text-consult-done.html', name: 'text-consult-done' },
|
||||
{ file: '../../expert/workbench/text-consult-timeout.html', name: 'text-consult-timeout' },
|
||||
{ file: '../../expert/workbench/video-appt.html', name: 'video-appt' },
|
||||
{ file: '../../expert/workbench/video-ongoing.html', name: 'video-ongoing' },
|
||||
{ file: '../../expert/workbench/video-in-progress.html', name: 'video-in-progress' },
|
||||
{ file: '../../expert/workbench/video-done.html', name: 'video-done' },
|
||||
{ file: '../../expert/workbench/video-cancelled.html', name: 'video-cancelled' },
|
||||
{ file: '../../expert/workbench/video-rejected.html', name: 'video-rejected' },
|
||||
// 知识库
|
||||
{ file: '../../expert/knowledge/index-v2.html', name: 'knowledge-index' },
|
||||
{ file: '../../expert/knowledge/index.html', name: 'knowledge-index' },
|
||||
{ file: '../../expert/knowledge/detail.html', name: 'knowledge-detail' },
|
||||
// 个人中心
|
||||
{ file: '../../expert/profile/index-v2.html', name: 'profile-index' },
|
||||
{ file: '../../expert/profile/index.html', name: 'profile-index' },
|
||||
{ file: '../../expert/profile/edit-profile.html', name: 'edit-profile' },
|
||||
{ file: '../../expert/profile/edit-diseases.html', name: 'edit-diseases' },
|
||||
{ file: '../../expert/profile/schedule.html', name: 'schedule' },
|
||||
@@ -34,8 +35,8 @@ const pages = [
|
||||
{ file: '../../expert/profile/reviews.html', name: 'reviews' },
|
||||
{ file: '../../expert/profile/change-pwd.html', name: 'change-pwd' },
|
||||
// 共享模块
|
||||
{ file: '../../ai-assistant/index-v2.html', name: 'ai-assistant' },
|
||||
{ file: '../../message/index-v2.html', name: 'message-index' },
|
||||
{ file: '../../ai-assistant/index.html', name: 'ai-assistant' },
|
||||
{ file: '../../message/index.html', name: 'message-index' },
|
||||
{ file: '../../message/contacts.html', name: 'message-contacts' },
|
||||
{ file: '../../message/im-chat.html', name: 'message-im-chat' },
|
||||
];
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
Reference in New Issue
Block a user