Phase 0 基础设施:
- statusTag.ts: getStatusInlineStyle() 移除内联 borderRadius/padding/fontSize,仅返回 {background, color}
- 新增 SEVERITY_COLORS + getSeverityStyle() + getSeverityLabel() 统一告警严重程度样式
- variables.scss: 新增 9 个语义颜色别名 ($success/$danger/$warning/$info 等)
- mixins.scss: 新增 status-inline mixin 统一状态标签样式
- 7 个消费者页面添加 @include status-inline CSS 补偿
Phase 1 HIGH 修复 (4 页面):
- P46 随访管理: 移除 getTypeStyle() 硬编码 fontSize,替换文字 Loading 为组件
- P45 咨询详情医护: 添加 Loading/ErrorState 三态模板 + error ref
- P02 健康数据: 添加 loading ref + Loading 组件 + 错误 toast 提示
- P48 告警中心: 替换本地 SEVERITY_COLORS/SEVERITY_LABELS 为 statusTag.ts 导出
Phase 2 全局一致性:
- 2.1 触控补全: 17 页面为可点击元素添加 min-height: $touch-min
- 2.2 字号替换: 19 文件 31 处硬编码 px → Design Token CSS 变量
- 2.3 颜色替换: 18 文件 ~50 处硬编码十六进制 → SCSS 语义变量
- 2.4 elder-mode.scss: 新增 9 个选择器到触控放大清单
Phase 3 LOW 修复:
- 3.1 统一 Loading: 21 页面旧式文字加载 → <Loading> 组件
- 3.2 useElderClass: 8 页面补全长者模式 class 绑定
- 3.3 零散修复: 按钮 44px→48px,诊断记录添加 scroll-view 无限加载
同时新增 UniApp (Vue 3 + Vite) 小程序完整代码库 (146 文件)
168 lines
3.9 KiB
Vue
168 lines
3.9 KiB
Vue
<template>
|
||
<scroll-view scroll-y :class="['page-scroll', elderClass]">
|
||
<view class="page-content">
|
||
<text class="page-title">健康趋势</text>
|
||
|
||
<!-- 指标切换 -->
|
||
<view class="tab-group">
|
||
<view v-for="tab in tabs" :key="tab.key"
|
||
:class="['tab-item', { active: activeTab === tab.key }]"
|
||
@tap="switchTab(tab.key)"
|
||
>
|
||
{{ tab.name }}
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 趋势图(纯 CSS 柱状图) -->
|
||
<view class="chart-card card">
|
||
<Loading v-if="loading" text="加载中..." />
|
||
<EmptyState v-else-if="trendData.length === 0" icon="📊" title="暂无趋势数据" />
|
||
<view v-else class="bar-chart">
|
||
<view v-for="(item, idx) in trendData" :key="idx" class="bar-group">
|
||
<view class="bar" :style="{ height: getBarHeight(item.value) + '%' }" />
|
||
<text class="bar-label">{{ item.label }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 数据列表 -->
|
||
<view v-if="trendData.length > 0" class="data-list card">
|
||
<view v-for="(item, idx) in trendData" :key="idx" class="data-row">
|
||
<text class="data-date">{{ item.label }}</text>
|
||
<text class="data-value">{{ item.value }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { ref, onMounted } from 'vue'
|
||
import { onLoad } from '@dcloudio/uni-app'
|
||
import { getTrend } from '@/services/health'
|
||
import Loading from '@/components/Loading.vue'
|
||
import EmptyState from '@/components/EmptyState.vue'
|
||
import { useElderClass } from '@/composables/useElderClass'
|
||
|
||
const { elderClass } = useElderClass()
|
||
const tabs = [
|
||
{ key: 'heart_rate', name: '心率' },
|
||
{ key: 'blood_pressure', name: '血压' },
|
||
{ key: 'blood_sugar', name: '血糖' },
|
||
{ key: 'weight', name: '体重' },
|
||
]
|
||
|
||
const activeTab = ref('heart_rate')
|
||
const loading = ref(false)
|
||
const trendData = ref<{ label: string; value: number }[]>([])
|
||
|
||
function switchTab(key: string) {
|
||
activeTab.value = key
|
||
fetchTrend()
|
||
}
|
||
|
||
function getBarHeight(value: number): number {
|
||
const max = Math.max(...trendData.value.map(d => d.value), 1)
|
||
return (value / max) * 80
|
||
}
|
||
|
||
async function fetchTrend() {
|
||
loading.value = true
|
||
try {
|
||
const res = await getTrend(activeTab.value, '7d')
|
||
trendData.value = (res?.data_points || []).map((item) => ({
|
||
label: item.date || '',
|
||
value: Number(item.value) || 0,
|
||
}))
|
||
} catch {
|
||
trendData.value = []
|
||
}
|
||
loading.value = false
|
||
}
|
||
|
||
onLoad(() => { fetchTrend() })
|
||
onMounted(fetchTrend)
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.page-scroll { height: 100vh; background: $bg; }
|
||
.page-content { padding: 28px 24px 120px; }
|
||
.page-title { @include section-title; }
|
||
.card { @include card; }
|
||
|
||
.tab-group {
|
||
display: flex;
|
||
gap: 12px;
|
||
margin-bottom: 24px;
|
||
overflow-x: auto;
|
||
}
|
||
|
||
.tab-item {
|
||
padding: 12px 24px;
|
||
min-height: $touch-min;
|
||
display: flex;
|
||
align-items: center;
|
||
border-radius: $r-pill;
|
||
font-size: var(--tk-font-body-sm);
|
||
color: $tx3;
|
||
background: $card;
|
||
white-space: nowrap;
|
||
box-shadow: $shadow-sm;
|
||
|
||
&.active {
|
||
background: $pri;
|
||
color: $white;
|
||
}
|
||
}
|
||
|
||
.bar-chart {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: space-around;
|
||
height: 240px;
|
||
padding: 20px 0;
|
||
}
|
||
|
||
.bar-group {
|
||
@include flex-center;
|
||
flex-direction: column;
|
||
flex: 1;
|
||
}
|
||
|
||
.bar {
|
||
width: 32px;
|
||
background: $pri;
|
||
border-radius: 8px 8px 0 0;
|
||
min-height: 4px;
|
||
}
|
||
|
||
.bar-label {
|
||
font-size: var(--tk-font-micro);
|
||
color: $tx3;
|
||
margin-top: 8px;
|
||
}
|
||
|
||
.data-list { margin-top: 16px; }
|
||
|
||
.data-row {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding: 14px 0;
|
||
border-bottom: 1px solid $bd-l;
|
||
|
||
&:last-child { border-bottom: none; }
|
||
}
|
||
|
||
.data-date {
|
||
font-size: var(--tk-font-body-sm);
|
||
color: $tx2;
|
||
}
|
||
|
||
.data-value {
|
||
font-size: var(--tk-font-num);
|
||
font-weight: bold;
|
||
color: $pri;
|
||
@include serif-number;
|
||
}
|
||
</style>
|