Compare commits

..

3 Commits

Author SHA1 Message Date
guke c00e834a49 Merge branch 'main' into codex/withdraw-review-management 2026-07-27 14:57:29 +08:00
linkeyu a189c7df9a 修复:同步提现审核列表与统计
邀请提现和其他提现页在窗口聚焦、恢复可见及每分钟自动刷新当前列表和统计。
2026-07-27 10:20:04 +08:00
linkeyu 4cd92539a7 功能:完善提现审核与用户管理页面 2026-07-26 11:36:35 +08:00
2 changed files with 0 additions and 6 deletions
@@ -124,10 +124,7 @@ function summaryCount(summary: WithdrawSummary | null, key: string) {
if (!summary) return undefined;
if (key === 'reviewing') return summary.reviewing_count;
if (key === 'pending') return summary.pending_count;
if (key === 'success') return summary.success_count;
if (key === 'rejected') return summary.rejected_count;
if (key === 'failed') return summary.failed_count;
if (key === 'all') return summary.total_count;
return undefined;
}
-3
View File
@@ -167,10 +167,7 @@ export interface WithdrawSummary {
reviewing_count: number;
reviewing_amount_cents: number;
pending_count: number;
success_count: number;
rejected_count: number;
failed_count: number;
total_count: number;
today_success_count: number;
today_success_amount_cents: number;
today_rejected_count: number;