hookehuyr

feat(订单状态): 添加已过期状态映射

...@@ -226,6 +226,7 @@ const statusMap = { ...@@ -226,6 +226,7 @@ const statusMap = {
226 APPLY_REFUND: { text: '申请退款', color: 'text-red-500' }, 226 APPLY_REFUND: { text: '申请退款', color: 'text-red-500' },
227 REFUND: { text: '已退款', color: 'text-red-500' }, 227 REFUND: { text: '已退款', color: 'text-red-500' },
228 REFUND_ERROR: { text: '退款失败', color: 'text-red-500' }, 228 REFUND_ERROR: { text: '退款失败', color: 'text-red-500' },
229 + EXPIRED: { text: '已过期', color: 'text-gray-400' },
229 } 230 }
230 231
231 // 订单审批状态映射 232 // 订单审批状态映射
......