This commit is contained in:
lik
2026-06-14 11:46:10 +08:00
parent 894a9881d7
commit f8f7afceb8
14 changed files with 1340 additions and 509 deletions

View File

@@ -1,42 +1,88 @@
/* pages/order/index.less */
// 颜色变量 - 参考图浅色社交风格
@bg-primary: #f5f6fa;
@bg-secondary: #ffffff;
@bg-card: #ffffff;
@accent-primary: #4c6ef5;
@accent-secondary: #6b7aff;
@accent-gradient-start: #4c6ef5;
@accent-gradient-end: #748ffc;
@text-primary: #1a1a2e;
@text-secondary: #6b7280;
@text-muted: #9ca3af;
@border-color: #e5e7eb;
@status-pending: #f59f00;
@status-confirmed: #4c6ef5;
@status-in-progress: #20c997;
@status-completed: #51cf66;
@status-cancelled: #ff6b6b;
@divider-color: #f3f4f6;
@bg: #f7f8fc;
@card: #ffffff;
@dark: #1a1a2e;
@text: #3a3d5c;
@muted: #a0a3bd;
@border: #f0f1f5;
@accent: #667eea;
@accent-end: #764ba2;
@pending: #e6a23c;
@confirmed: #409eff;
@in-progress: #67c23a;
@completed: #7c5cfc;
@cancelled: #b0b0b0;
page {
background-color: @bg-primary;
color: @text-primary;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background-color: @bg;
}
.order-page {
.page {
min-height: 100vh;
display: flex;
flex-direction: column;
height: 100vh;
background-color: @bg-primary;
background: @bg;
}
// ========== 筛选区域 ==========
.filter-section {
/* === 顶部 === */
.header {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
padding: 60rpx 40rpx 70rpx;
position: relative;
overflow: hidden;
&::after {
content: '';
position: absolute;
top: -80rpx;
right: -60rpx;
width: 280rpx;
height: 280rpx;
border-radius: 50%;
background: rgba(255, 255, 255, 0.03);
}
&::before {
content: '';
position: absolute;
bottom: -120rpx;
left: -80rpx;
width: 200rpx;
height: 200rpx;
border-radius: 50%;
background: rgba(255, 255, 255, 0.02);
}
}
.header-content {
position: relative;
z-index: 1;
}
.header-title {
display: block;
font-size: 44rpx;
font-weight: 700;
color: #fff;
letter-spacing: 2rpx;
margin-bottom: 12rpx;
}
.header-sub {
display: block;
font-size: 26rpx;
color: rgba(255, 255, 255, 0.5);
font-weight: 300;
letter-spacing: 1rpx;
}
/* === 筛选栏 === */
.filter-bar {
background: @card;
padding: 20rpx 0;
background-color: @bg-secondary;
border-bottom: 1rpx solid @border-color;
border-bottom: 1rpx solid @border;
}
.filter-scroll {
@@ -46,69 +92,61 @@ page {
.filter-list {
display: inline-flex;
padding: 0 24rpx;
gap: 20rpx;
gap: 16rpx;
}
.filter-item {
.filter-tag {
display: inline-flex;
align-items: center;
padding: 16rpx 32rpx;
background-color: @bg-primary;
border-radius: 32rpx;
border: 1rpx solid @border-color;
transition: all 0.3s ease;
padding: 12rpx 28rpx;
background: @bg;
border-radius: 28rpx;
font-size: 24rpx;
color: @muted;
border: 1rpx solid transparent;
transition: all 0.25s;
&.active {
background: linear-gradient(135deg, @accent-gradient-start, @accent-gradient-end);
background: linear-gradient(135deg, @accent, @accent-end);
color: #fff;
border-color: transparent;
box-shadow: 0 4rpx 16rpx rgba(76, 110, 245, 0.25);
box-shadow: 0 4rpx 16rpx rgba(102, 126, 234, 0.3);
.filter-text {
color: #ffffff;
font-weight: 600;
}
.filter-badge {
background-color: #ffffff;
color: @accent-primary;
.filter-count {
background: rgba(255, 255, 255, 0.25);
color: #fff;
}
}
}
.filter-text {
font-size: 26rpx;
color: @text-secondary;
line-height: 1;
}
.filter-badge {
display: inline-flex;
align-items: center;
justify-content: center;
.filter-count {
min-width: 32rpx;
height: 32rpx;
padding: 0 8rpx;
margin-left: 8rpx;
background-color: @status-cancelled;
background: rgba(0, 0, 0, 0.06);
border-radius: 16rpx;
font-size: 20rpx;
color: #ffffff;
color: @muted;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
// ========== 订单列表区域 ==========
.order-list {
/* === 列表区域 === */
.list-area {
flex: 1;
overflow: hidden;
}
.order-scroll {
.list-scroll {
height: 100%;
padding: 0 24rpx;
}
.loading-container,
.empty-container {
.loading-box,
.empty-box {
display: flex;
align-items: center;
justify-content: center;
@@ -116,239 +154,197 @@ page {
}
.loading-text {
color: @text-secondary !important;
color: @muted !important;
font-size: 26rpx !important;
}
.empty-text {
color: @text-secondary !important;
color: @muted !important;
font-size: 28rpx !important;
}
.empty-action {
margin-top: 30rpx;
padding: 16rpx 48rpx;
background: linear-gradient(135deg, @accent-gradient-start, @accent-gradient-end);
color: #ffffff;
font-size: 28rpx;
border-radius: 32rpx;
.empty-btn {
margin-top: 24rpx;
padding: 14rpx 48rpx;
background: linear-gradient(135deg, @accent, @accent-end);
color: #fff;
font-size: 26rpx;
border-radius: 28rpx;
display: inline-block;
}
// ========== 订单卡片 ==========
.order-cards {
/* === 订单卡片 === */
.card-list {
padding: 24rpx 0 40rpx;
}
.order-card {
margin-bottom: 24rpx;
background-color: @bg-card;
border-radius: 24rpx;
border: 1rpx solid @border-color;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
margin-bottom: 20rpx;
background: @card;
border-radius: 20rpx;
box-shadow: 0 4rpx 24rpx rgba(0, 0, 0, 0.04);
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
&:active {
transform: scale(0.98);
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.08);
opacity: 0.92;
}
}
.card-header {
.card-top {
display: flex;
justify-content: flex-end;
align-items: center;
justify-content: space-between;
padding: 28rpx 28rpx 20rpx;
padding: 20rpx 28rpx 0;
}
.order-id {
display: flex;
align-items: center;
gap: 10rpx;
}
.order-id-text {
.order-no {
font-size: 24rpx;
color: @text-muted;
color: @muted;
font-weight: 500;
font-family: 'DIN Alternate', 'Helvetica Neue', monospace;
}
.status-badge {
font-size: 22rpx;
padding: 6rpx 20rpx;
border-radius: 24rpx;
font-weight: 500;
}
.status-tag {
display: inline-flex;
align-items: center;
padding: 8rpx 18rpx;
border-radius: 20rpx;
font-size: 22rpx;
font-weight: 600;
&.pending {
background-color: rgba(245, 159, 0, 0.1);
color: @status-pending;
}
&.confirmed {
background-color: rgba(76, 110, 245, 0.1);
color: @accent-primary;
}
&.in_progress {
background-color: rgba(32, 201, 151, 0.1);
color: @status-in-progress;
}
&.completed {
background-color: rgba(81, 207, 102, 0.1);
color: @status-completed;
}
&.cancelled {
background-color: rgba(255, 107, 107, 0.1);
color: @status-cancelled;
}
.status-pending {
background: #fff8e6;
color: @pending;
}
// ========== 卡片主体 ==========
.card-body {
.status-confirmed {
background: #ecf5ff;
color: @confirmed;
}
.status-in_progress {
background: #f0f9eb;
color: @in-progress;
}
.status-completed {
background: #f4f0ff;
color: @completed;
}
.status-cancelled {
background: #f5f5f5;
color: @cancelled;
}
/* === 卡片主体 === */
.card-main {
padding: 0 28rpx;
}
.patient-row {
margin-bottom: 20rpx;
}
.patient-info {
.patient-line {
display: flex;
align-items: center;
gap: 24rpx;
gap: 20rpx;
margin-bottom: 16rpx;
}
.patient-avatar {
width: 80rpx;
height: 80rpx;
background: linear-gradient(135deg, @accent-gradient-start, @accent-gradient-end);
width: 72rpx;
height: 72rpx;
border-radius: 50%;
background: linear-gradient(135deg, @accent, @accent-end);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4rpx 12rpx rgba(76, 110, 245, 0.25);
}
.avatar-text {
font-size: 30rpx;
font-weight: 600;
color: #ffffff;
.avatar-char {
font-size: 28rpx;
font-weight: 700;
color: #fff;
}
.patient-detail {
.patient-meta {
flex: 1;
display: flex;
flex-direction: column;
gap: 8rpx;
}
.patient-name-row {
display: flex;
align-items: center;
gap: 14rpx;
gap: 12rpx;
margin-bottom: 4rpx;
}
.patient-name {
font-size: 32rpx;
font-size: 30rpx;
font-weight: 600;
color: @text-primary;
color: @dark;
}
.patient-gender {
font-size: 22rpx;
padding: 4rpx 12rpx;
border-radius: 10rpx;
background-color: rgba(76, 110, 245, 0.1);
color: @accent-primary;
.patient-sex {
font-size: 20rpx;
padding: 2rpx 10rpx;
border-radius: 8rpx;
font-weight: 500;
&.male {
background-color: rgba(76, 110, 245, 0.1);
color: @accent-primary;
background: rgba(102, 126, 234, 0.1);
color: @accent;
}
&.female {
background-color: rgba(255, 107, 107, 0.1);
color: @status-cancelled;
background: rgba(234, 102, 150, 0.1);
color: #ea6696;
}
}
.patient-age {
font-size: 24rpx;
color: @text-secondary;
font-weight: 500;
font-size: 22rpx;
color: @muted;
}
.patient-phone {
font-size: 24rpx;
color: @text-muted;
color: @muted;
}
.info-divider {
.divider {
height: 1rpx;
background-color: @divider-color;
margin: 20rpx 0;
background: @border;
margin: 16rpx 0;
}
.info-item {
.info-line {
display: flex;
align-items: flex-start;
gap: 14rpx;
margin-bottom: 14rpx;
align-items: baseline;
margin-bottom: 12rpx;
}
.info-content {
display: flex;
flex-direction: column;
gap: 6rpx;
}
.hospital-name {
font-size: 28rpx;
color: @text-primary;
font-weight: 500;
}
.department-name {
.line-label {
font-size: 24rpx;
color: @text-secondary;
color: @muted;
width: 64rpx;
flex-shrink: 0;
}
.service-name {
.line-value {
font-size: 26rpx;
color: @text-secondary;
font-weight: 500;
color: @text;
flex: 1;
}
.time-text {
font-size: 26rpx;
color: @text-secondary;
font-weight: 500;
}
.attendant-name {
font-size: 26rpx;
color: @text-secondary;
font-weight: 500;
}
// ========== 卡片底部 ==========
.card-footer {
/* === 卡片底部 === */
.card-bottom {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24rpx 28rpx 28rpx;
margin-top: 12rpx;
border-top: 1rpx solid @divider-color;
align-items: center;
padding: 20rpx 28rpx 24rpx;
margin-top: 8rpx;
border-top: 1rpx solid @border;
}
.fee-section {
.fee-area {
display: flex;
align-items: baseline;
gap: 8rpx;
@@ -356,61 +352,54 @@ page {
.fee-label {
font-size: 24rpx;
color: @text-muted;
color: @muted;
}
.fee-value {
font-size: 38rpx;
.fee-amount {
font-size: 36rpx;
font-weight: 700;
color: @status-pending;
color: @dark;
font-family: 'DIN Alternate', 'Helvetica Neue', sans-serif;
}
.action-buttons {
.action-area {
display: flex;
gap: 16rpx;
gap: 14rpx;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 16rpx 36rpx;
border-radius: 28rpx;
font-size: 26rpx;
.action-btn {
padding: 14rpx 32rpx;
border-radius: 24rpx;
font-size: 24rpx;
font-weight: 500;
transition: all 0.2s ease;
transition: all 0.2s;
&:active {
transform: scale(0.95);
opacity: 0.9;
}
}
.btn-primary {
background: linear-gradient(135deg, @accent-gradient-start, @accent-gradient-end);
color: #ffffff;
box-shadow: 0 4rpx 16rpx rgba(76, 110, 245, 0.25);
.btn-solid {
background: linear-gradient(135deg, @accent, @accent-end);
color: #fff;
box-shadow: 0 4rpx 16rpx rgba(102, 126, 234, 0.25);
}
.btn-secondary {
background-color: @bg-primary;
color: @text-secondary;
border: 1rpx solid @border-color;
&:active {
background-color: rgba(76, 110, 245, 0.05);
}
.btn-ghost {
background: @bg;
color: @muted;
border: 1rpx solid @border;
}
// ========== 加载更多 ==========
/* === 加载更多 === */
.load-more {
display: flex;
align-items: center;
justify-content: center;
padding: 40rpx 20rpx;
padding: 32rpx 20rpx;
}
.no-more {
font-size: 24rpx;
color: @text-muted;
color: @muted;
}