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 文件)
154 lines
4.2 KiB
Vue
154 lines
4.2 KiB
Vue
<template>
|
|
<view :class="['my-followups-page', elderClass]">
|
|
<view class="tab-bar">
|
|
<view
|
|
v-for="tab in TABS" :key="tab.key"
|
|
:class="['tab-item', activeTab === tab.key ? 'active' : '']"
|
|
@tap="handleTabChange(tab.key)"
|
|
>
|
|
<text :class="['tab-text', activeTab === tab.key ? 'active' : '']">{{ tab.label }}</text>
|
|
<view v-if="activeTab === tab.key" class="tab-indicator" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="task-list">
|
|
<view
|
|
v-for="t in tasks" :key="t.id"
|
|
class="task-card"
|
|
@tap="goToDetail(t.id)"
|
|
>
|
|
<view class="task-top">
|
|
<text class="task-name">{{ t.follow_up_type }}</text>
|
|
<text :class="['task-status', getStatusClass(t.status)]">
|
|
{{ getStatusLabel(t.status) }}
|
|
</text>
|
|
</view>
|
|
<text class="task-desc">{{ t.content_template }}</text>
|
|
<text class="task-due">截止: {{ t.planned_date }}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<EmptyState
|
|
v-if="tasks.length === 0 && !loading"
|
|
:text="'暂无' + (TABS.find(t => t.key === activeTab)?.label || '') + '任务'"
|
|
/>
|
|
|
|
<Loading v-if="loading" text="加载中..." />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { onShow } from '@dcloudio/uni-app'
|
|
import { listTasks, type FollowUpTask } from '@/services/followup'
|
|
import { useAuthStore } from '@/stores/auth'
|
|
import { useElderClass } from '@/composables/useElderClass'
|
|
import EmptyState from '@/components/EmptyState.vue'
|
|
import Loading from '@/components/Loading.vue'
|
|
|
|
const TABS = [
|
|
{ key: 'pending', label: '待完成' },
|
|
{ key: 'completed', label: '已完成' },
|
|
{ key: 'overdue', label: '已过期' },
|
|
]
|
|
|
|
const { elderClass } = useElderClass()
|
|
const authStore = useAuthStore()
|
|
const activeTab = ref('pending')
|
|
const tasks = ref<FollowUpTask[]>([])
|
|
const loading = ref(false)
|
|
|
|
const fetchTasks = async (status: string) => {
|
|
loading.value = true
|
|
try {
|
|
const patientId = authStore.currentPatient?.id
|
|
const res = await listTasks(patientId, status)
|
|
tasks.value = res.data || []
|
|
} catch {
|
|
uni.showToast({ title: '加载失败', icon: 'none' })
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
const handleTabChange = (key: string) => {
|
|
activeTab.value = key
|
|
fetchTasks(key)
|
|
}
|
|
|
|
const goToDetail = (id: string) => {
|
|
uni.navigateTo({ url: `/pages-sub/followup/detail/index?id=${id}` })
|
|
}
|
|
|
|
const getStatusClass = (status: string) => {
|
|
if (status === 'completed') return 'completed'
|
|
if (status === 'overdue') return 'overdue'
|
|
return 'pending'
|
|
}
|
|
|
|
const getStatusLabel = (status: string) => {
|
|
if (status === 'completed') return '已完成'
|
|
if (status === 'overdue') return '已过期'
|
|
return '待完成'
|
|
}
|
|
|
|
onShow(() => { fetchTasks(activeTab.value) })
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.my-followups-page { min-height: 100vh; background: $bg; }
|
|
.tab-bar { display: flex; background: $card; padding: 0; box-shadow: $shadow-sm; }
|
|
.tab-item {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 24px 0 20px;
|
|
position: relative;
|
|
}
|
|
.tab-text {
|
|
font-size: var(--tk-font-body-lg);
|
|
color: $tx2;
|
|
margin-bottom: 8px;
|
|
&.active { color: $pri; font-weight: bold; }
|
|
}
|
|
.tab-indicator { width: 32px; height: 4px; background: $pri; border-radius: $r-xs; }
|
|
.task-list { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
|
|
.task-card {
|
|
background: $card;
|
|
border-radius: $r;
|
|
padding: 28px;
|
|
box-shadow: $shadow-sm;
|
|
&:active { box-shadow: $shadow-md; }
|
|
}
|
|
.task-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
|
|
.task-name {
|
|
font-family: 'Georgia', 'Times New Roman', serif;
|
|
font-size: var(--tk-font-num);
|
|
font-weight: bold;
|
|
color: $tx;
|
|
}
|
|
.task-status {
|
|
@include tag($bd-l, $tx2);
|
|
&.pending { @include tag($wrn-l, $wrn); }
|
|
&.completed { @include tag($acc-l, $acc); }
|
|
&.overdue { @include tag($dan-l, $dan); }
|
|
}
|
|
.task-desc {
|
|
font-size: var(--tk-font-h1);
|
|
color: $tx2;
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.task-due {
|
|
@include serif-number;
|
|
font-size: var(--tk-font-h2);
|
|
color: $tx3;
|
|
display: block;
|
|
}
|
|
</style>
|