仪表盘
总用户
{{ dash.totalUsers }}
+{{ dash.newThisMonth }} 本月
付费用户
{{ dash.paidUsers }}
本月收入
¥{{ (dash.mrr/100).toFixed(2) }}
付费率
{{ dash.payRate }}%
🔔 {{ dash.pending.withdrawals }} 笔提现待审核 → 去审核
🔔 {{ dash.pending.expiringTrials }} 位用户试用将在 3 天内到期
🔔 {{ dash.pending.todayNewUsers }} 位新用户今日注册
用户管理
| 昵称 | 注册日期 | 订阅状态 | 方案 | 到期 | 推荐人 | 操作 |
|---|---|---|---|---|---|---|
| {{ u.nickname || '未设置' }} | {{ u.created_at?.slice(0,10) }} | 付费 试用 过期 | {{ u.active_plan || '-' }} | {{ (u.plan_expires_at || u.trial_expires_at || '-').slice(0,10) }} | {{ u.referrer_name || '-' }} |
推荐管理
| 推荐人 | 被推荐人 | 状态 | 返利 | 注册时间 |
|---|---|---|---|---|
| {{ r.referrer_name }} | {{ r.referee_name }} | {{ r.status }} | ¥{{ (r.reward_fen/100).toFixed(2) }} | {{ r.created_at?.slice(0,10) }} |
订单管理
| 用户 | 方案 | 金额 | 状态 | 支付时间 | 到期 |
|---|---|---|---|---|---|
| {{ o.nickname }} | {{ o.plan }} | ¥{{ (o.amount_fen/100).toFixed(2) }} | {{ o.status }} | {{ o.paid_at?.slice(0,16) || '-' }} | {{ o.expires_at?.slice(0,10) || '-' }} |
提现审核
| 申请人 | 金额 | 状态 | 申请时间 | 操作 |
|---|---|---|---|---|
| {{ w.nickname }} | ¥{{ (w.amount_fen/100).toFixed(2) }} | {{ w.status }} | {{ w.requested_at?.slice(0,16) }} | {{ w.processed_at?.slice(0,16) || '-' }} |
财务管理
总收入
¥{{ (financeData.totalRevenue/100).toFixed(2) }}
总返佣
¥{{ (financeData.totalCommission/100).toFixed(2) }}
返佣率
{{ financeData.commissionRate }}
已提现
¥{{ (financeData.totalWithdrawn/100).toFixed(2) }}
对账状态
{{ reconcileData.safe ? '✅ 对账正常' : '⚠️ 对账异常' }}
— 虚拟余额: ¥{{ (reconcileData.totalBalance/100).toFixed(2) }}
/ 上限: ¥{{ (reconcileData.limit/100).toFixed(2) }}