Phase 0: 建立 design token 体系 - tokens.scss 新增 --tk-pri/--tk-pri-l/--tk-pri-d/--tk-shadow-btn/--tk-shadow-tab - .doctor-mode 覆盖为靛蓝色系,.elder-mode 非线性放大字号 - variables.scss 新增医生端色彩 + 阴影变量 Phase 1: 组件库 + 页面全局替换 - 75 个页面 SCSS $pri → var(--tk-pri) 全量替换 - 11 个新 UI 组件(PrimaryButton/TabFilter/FormInput/ProgressRing 等) - 8 个现有组件 SCSS 更新 - 18 个医生端页面 useElderClass → useDoctorClass - PageHeader 匹配原型 NavBar 规格 Phase 2: 登录页重写 - Logo: 方形+ → 圆形渐变 H - 登录方式: 纯微信 → 账号密码 + 微信一键登录 - 新增 credentialLogin API + store action - 字号/间距严格匹配原型 mp-01-login.html
71 lines
1.2 KiB
SCSS
71 lines
1.2 KiB
SCSS
@import '../../../styles/variables.scss';
|
||
@import '../../../styles/mixins.scss';
|
||
|
||
// PageShell 已接管:min-height, background, padding
|
||
|
||
.page-title {
|
||
@include section-title;
|
||
padding-left: var(--tk-gap-2xs);
|
||
}
|
||
|
||
.prescription-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--tk-gap-md);
|
||
}
|
||
|
||
.prescription-card {
|
||
background: $card;
|
||
border-radius: $r;
|
||
padding: var(--tk-card-padding-lg);
|
||
box-shadow: $shadow-sm;
|
||
|
||
&:active {
|
||
opacity: var(--tk-touch-feedback-opacity);
|
||
}
|
||
}
|
||
|
||
.prescription-card-top {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: var(--tk-gap-sm);
|
||
}
|
||
|
||
.prescription-model {
|
||
font-size: var(--tk-font-body-lg);
|
||
font-weight: bold;
|
||
color: $tx;
|
||
}
|
||
|
||
.status-tag {
|
||
@include tag($bd-l, $tx3);
|
||
|
||
&.active {
|
||
@include tag($acc-l, $acc);
|
||
}
|
||
|
||
&.expired {
|
||
@include tag($tx3, $bg);
|
||
}
|
||
}
|
||
|
||
.prescription-meta {
|
||
display: flex;
|
||
gap: var(--tk-gap-lg);
|
||
margin-bottom: var(--tk-gap-xs);
|
||
}
|
||
|
||
.meta-item {
|
||
font-size: var(--tk-font-h2);
|
||
color: $tx2;
|
||
@include serif-number;
|
||
}
|
||
|
||
.prescription-date {
|
||
font-size: var(--tk-font-h2);
|
||
color: var(--tk-text-secondary);
|
||
display: block;
|
||
@include serif-number;
|
||
}
|