feat(order): 优化订单列表展示逻辑

- 为 PaymentCountdown 组件添加背景渐变样式- 添加订单支付过期判断和过滤逻辑
- 优化订单列表项的样式和结构
-修复 invite.ts 中的若干问题
This commit is contained in:
2025-08-19 16:17:00 +08:00
parent 2ddf0e9605
commit 40e282cf8f
3 changed files with 68 additions and 46 deletions

View File

@@ -18,19 +18,19 @@
/* 紧急状态少于1小时 */
&.urgent {
color: #ff6b6b;
background: linear-gradient(135deg, #ff6b6b, #ee5a52);
animation: pulse 2s infinite;
}
/* 非常紧急状态少于10分钟 */
&.critical {
color: #c44569;
background: linear-gradient(135deg, #ff4757, #c44569);
animation: flash 1s infinite;
}
/* 过期状态 */
&.expired {
color: #95a5a6;
background: linear-gradient(135deg, #95a5a6, #7f8c8d);
animation: none;
}
}