fix(mp): T40 UI 审计修复 — 28 项设计系统合规 + MCP forceSetAuth bridge

T40 小程序 UI 审计全部 60 页面,发现 28 项问题(HIGH×3 MEDIUM×10 LOW×15),
全部修复并通过静态验证(0 硬编码 border-radius/font-size 残留)。

主要修复:
- border-radius: 12 个文件硬编码值 → $r-xs/$r-lg/$r-pill 设计 token
- touch target: 5 个交互元素添加 min-height: 48px(action-inbox/mall/family/medication)
- elder-mode 页面接入 useElderClass(),预览字号改用 var(--tk-font-body)
- consultation 页面增加加载失败 toast 提示
- app.tsx 新增 forceSetAuth bridge 解决 MCP auth 注入兼容问题
- FAB 按钮和开关控件尺寸规范化

审计结果:PASS 41 / PASS_WITH_ISSUES 19 → 修复后全量 PASS
This commit is contained in:
iven
2026-05-14 09:38:02 +08:00
parent 9e0f421c14
commit a8d7183d7c
18 changed files with 295 additions and 690 deletions

View File

@@ -117,7 +117,7 @@
.session-avatar {
width: 36px;
height: 36px;
border-radius: 18px;
border-radius: $r-lg;
background: $pri-l;
@include flex-center;
flex-shrink: 0;
@@ -162,7 +162,7 @@
.session-tag {
font-size: var(--tk-font-micro);
padding: 2px 6px;
border-radius: 4px;
border-radius: $r-xs;
font-weight: 500;
display: inline-block;

View File

@@ -62,6 +62,7 @@ export default function Consultation() {
setSessions([]);
setTotal(0);
}
Taro.showToast({ title: '加载失败,下拉重试', icon: 'none' });
} finally {
setLoading(false);
loadingRef.current = false;