Files
MBTI_wang/miniprogram/pages/order/index.wxss
Ghost 3317c84b5e feat: 管理端与用户端批量更新(订单/邀请双码/tabBar/审核与分销等)
- 管理端:用户详情、企业看板双小程序码、超管设置与用户列表等
- 后端:订单接口、邀请码企业版+个人版、分析与测试相关调整
- 微信小程序/抖音:自定义 tabBar 居中与拍摄钮上移、相机页与结果页、订单页、支付与统计
- 新增 faceResultDetail 工具与 mp 分析迁移脚本

Made-with: Cursor
2026-03-28 16:46:00 +08:00

135 lines
1.8 KiB
Plaintext

.page {
min-height: 100vh;
background: #f5f5f5;
padding: 24rpx;
padding-bottom: 48rpx;
box-sizing: border-box;
}
.loading-wrap {
padding: 120rpx 0;
text-align: center;
}
.loading-text {
font-size: 28rpx;
color: #9ca3af;
}
.empty {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 160rpx;
}
.empty-icon {
font-size: 100rpx;
margin-bottom: 24rpx;
}
.empty-title {
font-size: 32rpx;
color: #374151;
font-weight: 600;
margin-bottom: 12rpx;
}
.empty-desc {
font-size: 26rpx;
color: #9ca3af;
text-align: center;
padding: 0 48rpx;
}
.order-card {
background: #fff;
border-radius: 16rpx;
padding: 28rpx;
margin-bottom: 24rpx;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
}
.card-head {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 16rpx;
margin-bottom: 12rpx;
}
.title {
flex: 1;
font-size: 30rpx;
font-weight: 600;
color: #111827;
line-height: 1.4;
}
.status {
font-size: 24rpx;
flex-shrink: 0;
padding: 4rpx 14rpx;
border-radius: 8rpx;
}
.status-pending {
color: #d97706;
background: #fffbeb;
}
.status-paid,
.status-completed {
color: #059669;
background: #ecfdf5;
}
.status-cancelled {
color: #6b7280;
background: #f3f4f6;
}
.order-no {
font-size: 24rpx;
color: #9ca3af;
margin-bottom: 16rpx;
word-break: break-all;
}
.card-foot {
display: flex;
justify-content: space-between;
align-items: center;
}
.time {
font-size: 24rpx;
color: #6b7280;
}
.amount {
font-size: 32rpx;
font-weight: 700;
color: #7c3aed;
}
.load-more {
text-align: center;
padding: 24rpx;
}
.load-more-text {
font-size: 28rpx;
color: #7c3aed;
}
.list-end {
text-align: center;
padding: 16rpx;
}
.list-end-text {
font-size: 24rpx;
color: #9ca3af;
}