This commit is contained in:
sion
2026-04-05 23:28:38 +08:00
parent 0c66b3725f
commit da0f9d6f5e
21 changed files with 640 additions and 394 deletions

View File

@@ -60,9 +60,10 @@ export interface OrderFund {
amount: number
fee?: number // 手续费
receivableAmount?: number // 应收款项
status: number // 充值: 1待付款 2待确认 3已完成 4已驳回 5已取消; 提现: 1待审批 2已完成 3已驳回 4已取消 5待财务审核
status: number // 充值: 1待付款 2待确认 3已完成 4已驳回 5已取消; 提现: 1待审批 2已出款 3已驳回 4已取消 5待财务审核
walletId?: number
walletAddress?: string
network?: string // 提现网络类型
withdrawContact?: string
payTime?: string
confirmTime?: string
@@ -88,12 +89,24 @@ export interface ColdWallet {
}
export interface FinanceOverview {
// 核心 KPI
totalDeposit: number
totalWithdraw: number
totalActualPayout: number // 实际出款金额
// 资金状态
fundBalance: number
totalFrozen: number // 冻结中金额
tradeValue: number
// 运营数据
pendingCount: number
userCount: number
monthNewUsers: number // 本月新增用户
todayActiveUsers: number // 今日活跃用户
// 环比数据
monthlyDeposit: number
monthlyWithdraw: number
lastMonthDeposit: number
lastMonthWithdraw: number
}
// Auth API