feat(mp): design-handoff 产出的页面样式和组件优化

- 首页/商城/医生端/积分/家庭档案等页面 SCSS + TSX 更新
- TabFilter 组件样式优化
- points service 接口调整
- app.config 路由注册更新
This commit is contained in:
iven
2026-05-18 02:12:41 +08:00
parent 2698c98888
commit e555496528
26 changed files with 1887 additions and 1428 deletions

View File

@@ -1,40 +1,68 @@
@import '../../styles/variables.scss';
@import '../../styles/mixins.scss';
// 积分商城 — 对齐原型 docs/design/mp-05-mall.html
.mall-page {
padding-bottom: calc(var(--tk-tabbar-space) + env(safe-area-inset-bottom));
}
/* ─── 积分余额卡片 ─── */
/* ─── 积分卡片(渐变背景) ─── */
.mall-header {
background: linear-gradient(135deg, var(--tk-pri) 0%, var(--tk-pri-d) 100%);
padding: var(--tk-gap-2xl) var(--tk-gap-xl) var(--tk-gap-xl);
padding: var(--tk-gap-xl) var(--tk-page-padding) var(--tk-gap-xl);
position: relative;
overflow: hidden;
// 装饰圆
&::before {
content: '';
position: absolute;
top: -20px;
right: -20px;
width: 100px;
height: 100px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.08);
}
&::after {
content: '';
position: absolute;
bottom: -30px;
right: 40px;
width: 80px;
height: 80px;
border-radius: 40px;
background: rgba(255, 255, 255, 0.05);
}
}
.points-card {
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: $r-lg;
padding: var(--tk-gap-xl);
position: relative;
z-index: 1;
}
.points-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--tk-gap-md);
margin-bottom: var(--tk-gap-sm);
}
.points-label {
font-size: var(--tk-font-h1);
color: rgba(255, 255, 255, 0.85);
font-size: var(--tk-font-cap);
color: rgba(255, 255, 255, 0.7);
letter-spacing: 1px;
}
.checkin-btn {
background: rgba(255, 255, 255, 0.25);
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.4);
padding: var(--tk-gap-sm) var(--tk-card-padding-lg);
padding: 6px 14px;
border-radius: $r-pill;
display: flex;
align-items: center;
gap: 4px;
transition: all 0.2s;
&:active {
@@ -48,9 +76,9 @@
}
.checkin-btn-text {
font-size: var(--tk-font-h2);
font-size: var(--tk-font-cap);
color: $white;
font-weight: 600;
font-weight: 500;
}
.checkin-btn.checked .checkin-btn-text {
@@ -59,8 +87,8 @@
.points-balance {
@include serif-number;
font-size: var(--tk-font-display);
font-weight: bold;
font-size: 42px;
font-weight: 700;
color: $white;
display: block;
margin-bottom: var(--tk-gap-xs);
@@ -69,44 +97,105 @@
}
.points-streak {
font-size: var(--tk-font-body);
font-size: var(--tk-font-cap);
color: rgba(255, 255, 255, 0.7);
display: block;
}
/* ─── 商品类型切换 ─── */
/* ─── 快捷操作 ─── */
.mall-actions {
display: flex;
justify-content: space-around;
padding: var(--tk-section-gap) var(--tk-page-padding);
}
.mall-action {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
&:active {
opacity: var(--tk-touch-feedback-opacity);
}
}
.mall-action-icon {
width: 52px;
height: 52px;
border-radius: 26px;
display: flex;
align-items: center;
justify-content: center;
&--checkin {
background: $acc;
box-shadow: 0 4px 12px rgba(91, 122, 94, 0.3);
}
&--task {
background: $pri;
box-shadow: 0 4px 12px rgba(196, 98, 58, 0.3);
}
&--history {
background: $wrn;
box-shadow: 0 4px 12px rgba(196, 135, 58, 0.3);
}
}
.mall-action-icon-text {
font-size: 22px;
color: $white;
line-height: 1;
}
.mall-action-label {
font-size: var(--tk-font-micro);
color: $tx2;
font-weight: 500;
}
/* ─── 分类标签Pill ─── */
.type-tabs {
display: flex;
padding: var(--tk-section-gap) var(--tk-page-padding) 0;
gap: 10px;
padding: 0 var(--tk-page-padding) var(--tk-section-gap);
overflow-x: auto;
&::-webkit-scrollbar {
display: none;
}
}
.type-tab {
flex: 1;
text-align: center;
padding: var(--tk-gap-md) 0;
position: relative;
min-height: 48px;
padding: 7px 18px;
border-radius: $r-pill;
font-size: var(--tk-font-body-sm);
font-weight: 400;
background: $surface-alt;
color: $tx2;
white-space: nowrap;
flex-shrink: 0;
transition: all 0.2s;
&.active::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 48px;
height: 4px;
&:active {
opacity: var(--tk-touch-feedback-opacity);
}
&.active {
background: var(--tk-pri);
border-radius: $r-xs;
color: $white;
font-weight: 600;
box-shadow: var(--tk-shadow-tab);
}
}
.type-tab-text {
font-size: var(--tk-font-body-lg);
color: $tx2;
font-size: inherit;
color: inherit;
font-weight: inherit;
&.active {
color: var(--tk-pri);
font-weight: 600;
color: inherit;
}
}
@@ -114,12 +203,15 @@
.product-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--tk-gap-md);
padding: var(--tk-section-gap) var(--tk-page-padding);
gap: var(--tk-gap-sm);
padding: 0 var(--tk-page-padding) var(--tk-gap-lg);
}
.product-card {
background: $card;
border-radius: $r-sm;
overflow: hidden;
box-shadow: $shadow-sm;
&:active {
opacity: var(--tk-touch-feedback-opacity);
@@ -128,19 +220,20 @@
.product-image {
width: 100%;
height: 200px;
aspect-ratio: 1;
@include flex-center;
position: relative;
&.type-physical { background: var(--tk-pri-l); }
&.type-physical { background: $pri-l; }
&.type-service { background: $acc-l; }
&.type-privilege { background: $wrn-l; }
}
.product-image-char {
font-family: 'Georgia', 'Times New Roman', serif;
font-size: var(--tk-font-hero);
font-weight: bold;
color: var(--tk-pri);
font-size: 32px;
font-weight: 700;
color: $pri;
line-height: 1;
.type-service & { color: $acc; }
@@ -148,57 +241,83 @@
}
.product-info {
padding: var(--tk-section-gap);
padding: 10px var(--tk-gap-sm) 14px;
}
.product-name {
font-size: var(--tk-font-h1);
font-size: var(--tk-font-body-sm);
font-weight: 600;
color: $tx;
display: block;
margin-bottom: var(--tk-gap-sm);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
line-height: 1.4;
height: 40px;
margin-bottom: 8px;
}
.product-bottom {
display: flex;
justify-content: space-between;
align-items: center;
align-items: baseline;
gap: 6px;
}
.product-points {
display: flex;
align-items: center;
gap: var(--tk-gap-2xs);
align-items: baseline;
gap: 2px;
}
.product-points-char {
font-family: 'Georgia', 'Times New Roman', serif;
font-size: var(--tk-font-body);
font-weight: bold;
color: $wrn;
@include serif-number;
font-size: 18px;
font-weight: 700;
color: $pri;
}
.product-points-value {
@include serif-number;
font-size: var(--tk-font-body-lg);
font-weight: bold;
color: $wrn;
font-size: var(--tk-font-micro);
color: $pri;
font-weight: 500;
}
.product-price {
font-size: var(--tk-font-micro);
color: $tx3;
text-decoration: line-through;
}
.product-stock {
font-size: var(--tk-font-body);
padding: 2px var(--tk-gap-sm);
border-radius: $r-sm;
font-size: var(--tk-font-micro);
padding: 2px 6px;
border-radius: $r-xs;
&.out {
@include tag($bd-l, $tx3);
background: $bd-l;
color: $tx3;
}
&.low {
@include tag($dan-l, $dan);
background: $dan-l;
color: $dan;
}
}
.product-tag {
position: absolute;
top: 8px;
left: 8px;
font-size: 10px;
font-weight: 600;
padding: 2px 8px;
border-radius: 6px;
color: $white;
&--hot {
background: $dan;
}
&--new {
background: $acc;
}
}