Files
hms/apps/miniprogram/src/pages/pkg-doctor-clinical/report/index.scss
iven ae23baeece refactor(mp): 迁移报告列表页 — 使用统一组件库
- PageShell 替代手写 ScrollView + min-height/bg/padding
- SearchSection 替代搜索栏
- ContentCard 替代 report-card 手写样式
- StatusTag 替代 report-card__reviewed 手写标签
- LoadingCard 替代 Loading 组件
- 精简 SCSS:删除 page/search-bar/card 通用样式,保留业务特有样式
2026-05-16 00:56:18 +08:00

58 lines
1.0 KiB
SCSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@import '../../../styles/variables.scss';
// PageShell 已接管min-height, background, padding
// SearchSection 已接管search-bar
// ContentCard 已接管report-card 背景/圆角/阴影/触摸反馈
// StatusTag 已接管reviewed 标签样式
.report-count {
margin-bottom: 16px;
text {
font-size: var(--tk-font-h2);
color: $tx3;
}
}
.report-cards {
display: flex;
flex-direction: column;
gap: var(--tk-gap-md);
}
.report-card__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
}
.report-card__type {
font-family: 'Georgia', 'Times New Roman', serif;
font-size: var(--tk-font-body-lg);
font-weight: 600;
color: $tx;
}
.report-card__date {
font-size: var(--tk-font-h2);
color: $tx3;
}
.report-card__indicators {
display: flex;
align-items: center;
gap: 16px;
}
.report-card__abnormal {
font-size: var(--tk-font-h1);
color: $dan;
font-weight: 600;
}
.report-card__normal {
font-size: var(--tk-font-h1);
color: $acc;
}