Files
hms/apps/miniprogram-uniapp/src/pages-sub/pkg-profile/consents/index.vue
iven 2c567bd772 fix(mp): T40 UI 审查全量修复 + 设计体系一致性优化
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 文件)
2026-05-15 11:22:51 +08:00

150 lines
5.1 KiB
Vue

<template>
<view :class="['consents-page', elderClass]">
<text class="page-title">知情同意</text>
<view class="consent-list">
<view v-for="c in consents" :key="c.id" class="consent-card">
<view class="consent-card__header">
<text class="consent-card__type">{{ CONSENT_TYPE_MAP[c.consent_type] || c.consent_type }}</text>
<text :class="['status-tag', (STATUS_MAP[c.status] || { cls: '' }).cls]">
{{ (STATUS_MAP[c.status] || { label: c.status }).label }}
</text>
</view>
<text class="consent-card__scope">范围: {{ c.consent_scope }}</text>
<text v-if="c.granted_at" class="consent-card__date">签署时间: {{ c.granted_at }}</text>
<text v-if="c.revoked_at" class="consent-card__date">撤回时间: {{ c.revoked_at }}</text>
<text v-if="c.expiry_date" class="consent-card__expiry">有效期至: {{ c.expiry_date }}</text>
<view
v-if="c.status === 'granted'"
:class="['revoke-btn', revoking === c.id ? 'revoke-btn--disabled' : '']"
@tap="handleRevoke(c)"
>
<text class="revoke-btn__text">{{ revoking === c.id ? '处理中...' : '撤回同意' }}</text>
</view>
</view>
</view>
<EmptyState
v-if="consents.length === 0 && !loading"
:text="authStore.currentPatient ? '暂无知情同意记录' : '请先在就诊人管理中选择就诊人'"
/>
<Loading v-if="loading" text="加载中..." />
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { onShow, onPullDownRefresh } from '@dcloudio/uni-app'
import { listConsents, revokeConsent, type Consent } from '@/services/consent'
import { useAuthStore } from '@/stores/auth'
import { useElderClass } from '@/composables/useElderClass'
import EmptyState from '@/components/EmptyState.vue'
import Loading from '@/components/Loading.vue'
const CONSENT_TYPE_MAP: Record<string, string> = {
data_processing: '数据处理同意',
health_data_collection: '健康数据采集',
research_use: '科研使用',
third_party_share: '第三方共享',
genetic_testing: '基因检测',
telemedicine: '远程医疗',
}
const STATUS_MAP: Record<string, { label: string; cls: string }> = {
granted: { label: '已签署', cls: 'granted' },
revoked: { label: '已撤回', cls: 'revoked' },
}
const { elderClass } = useElderClass()
const authStore = useAuthStore()
const consents = ref<Consent[]>([])
const page = ref(1)
const total = ref(0)
const loading = ref(false)
const revoking = ref<string | null>(null)
const fetchData = async (p: number, append = false) => {
if (!authStore.currentPatient) {
consents.value = []
return
}
loading.value = true
try {
const res = await listConsents(authStore.currentPatient.id, { page: p, page_size: 20 })
const list = res.data || []
consents.value = append ? [...consents.value, ...list] : list
total.value = res.total
page.value = p
} catch {
uni.showToast({ title: '加载失败', icon: 'none' })
} finally {
loading.value = false
}
}
const loadMore = () => {
if (!loading.value && consents.value.length < total.value) {
fetchData(page.value + 1, true)
}
}
const handleRevoke = async (consent: Consent) => {
const res = await uni.showModal({
title: '确认撤回',
content: `确定要撤回「${CONSENT_TYPE_MAP[consent.consent_type] || consent.consent_type}」的同意吗?`,
})
if (!res.confirm) return
revoking.value = consent.id
try {
const updated = await revokeConsent(consent.id, consent.version)
consents.value = consents.value.map((c) => c.id === updated.id ? updated : c)
uni.showToast({ title: '已撤回', icon: 'success' })
} catch {
uni.showToast({ title: '撤回失败', icon: 'none' })
} finally {
revoking.value = null
}
}
onShow(() => { fetchData(1) })
onPullDownRefresh(() => { fetchData(1).finally(() => uni.stopPullDownRefresh()) })
</script>
<style lang="scss" scoped>
.consents-page { min-height: 100vh; background: $bg; padding: 32px 24px; padding-bottom: 40px; }
.page-title { @include section-title; padding-left: 4px; }
.consent-list { display: flex; flex-direction: column; gap: 16px; }
.consent-card { background: $card; border-radius: $r; padding: 28px; box-shadow: $shadow-sm; }
.consent-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.consent-card__type { font-size: var(--tk-font-body-lg); font-weight: bold; color: $tx; }
.status-tag {
@include tag($bd-l, $tx3);
&.granted { @include tag($acc-l, $acc); }
&.revoked { @include tag($dan-l, $dan); }
}
.consent-card__scope,
.consent-card__date,
.consent-card__expiry {
font-size: var(--tk-font-h2);
color: $tx2;
display: block;
margin-bottom: 4px;
font-variant-numeric: tabular-nums;
}
.revoke-btn {
margin-top: 16px;
padding: 12px 0;
min-height: $touch-min;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border-radius: $r-sm;
border: 1px solid $dan;
&:active { background: $dan-l; }
&--disabled { opacity: 0.5; }
}
.revoke-btn__text { font-size: var(--tk-font-h2); color: $dan; font-weight: 500; }
</style>