Files
hms/apps/miniprogram/src/pages/mall/index.scss
iven 1507ec6036
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled
feat(miniprogram): TabBar 重构 + 积分商城页面 (Chunk 5)
TabBar: 首页|健康|预约|资讯|我的 → 首页|上报|咨询|商城|我的

新增页面:
- 商城(mall): 积分余额卡片 + 签到 + 商品网格(分类型筛选/分页)
- 咨询(consultation): 占位页(即将上线)

新增服务:
- services/points.ts: 积分账户/签到/商品列表 API

API: getAccount, dailyCheckin, getCheckinStatus, listProducts
2026-04-25 17:44:24 +08:00

189 lines
2.9 KiB
SCSS

@import '../../styles/variables.scss';
.mall-page {
min-height: 100vh;
background: $bg;
padding-bottom: 40px;
}
/* ===== 积分余额卡片 ===== */
.mall-header {
background: linear-gradient(135deg, $pri 0%, $pri-d 100%);
padding: 32px;
padding-top: 48px;
}
.points-card {
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: $r-lg;
padding: 32px;
}
.points-card-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
.points-label {
font-size: 26px;
color: rgba(255, 255, 255, 0.85);
}
.checkin-btn {
background: rgba(255, 255, 255, 0.25);
border: 1px solid rgba(255, 255, 255, 0.4);
padding: 10px 28px;
border-radius: 32px;
transition: all 0.2s;
&.checked {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
}
}
.checkin-btn-text {
font-size: 24px;
color: white;
font-weight: bold;
}
.checkin-btn.checked .checkin-btn-text {
opacity: 0.6;
}
.points-balance {
font-size: 72px;
font-weight: bold;
color: white;
display: block;
margin-bottom: 8px;
letter-spacing: 2px;
}
.points-streak {
font-size: 22px;
color: rgba(255, 255, 255, 0.7);
display: block;
}
/* ===== 商品类型切换 ===== */
.type-tabs {
display: flex;
gap: 0;
padding: 20px 24px 0;
background: transparent;
}
.type-tab {
flex: 1;
text-align: center;
padding: 16px 0;
position: relative;
&.active::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 48px;
height: 4px;
background: $pri;
border-radius: 2px;
}
}
.type-tab-text {
font-size: 28px;
color: $tx2;
&.active {
color: $pri;
font-weight: bold;
}
}
/* ===== 商品网格 ===== */
.product-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 20px 24px;
}
.product-card {
background: $card;
border-radius: $r;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-image {
width: 100%;
height: 240px;
display: flex;
align-items: center;
justify-content: center;
}
.product-image-icon {
font-size: 64px;
}
.product-info {
padding: 20px;
}
.product-name {
font-size: 26px;
font-weight: bold;
color: $tx;
display: block;
margin-bottom: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.product-bottom {
display: flex;
justify-content: space-between;
align-items: center;
}
.product-points {
display: flex;
align-items: center;
gap: 4px;
}
.product-points-icon {
font-size: 22px;
}
.product-points-value {
font-size: 28px;
font-weight: bold;
color: $wrn;
}
.product-stock {
font-size: 20px;
padding: 2px 10px;
border-radius: 8px;
&.out {
color: $tx3;
background: $bd-l;
}
&.low {
color: $dan;
background: $dan-l;
}
}