fix(order): 修复订单列表筛选逻辑和支付倒计时配置

- 将开发环境API_BASE_URL切换回本地地址
- 修复Tabs状态筛选器逻辑,全部状态时删除筛选参数
- 更新待收货和退货/售后标签页的订单过滤规则
- 将支付倒计时超时时间从1小时调整为24小时
- 修复立即支付按钮显示逻辑,避免已过期订单仍显示支付按钮
This commit is contained in:
2026-02-06 00:17:43 +08:00
parent 6197dbdb84
commit 5bddf6e438
3 changed files with 21 additions and 12 deletions

View File

@@ -31,7 +31,7 @@ const PaymentCountdown: React.FC<PaymentCountdownProps> = ({
createTime,
payStatus = false,
realTime = false,
timeoutHours = 1,
timeoutHours = 24,
showSeconds = false,
className = '',
onExpired,