总会员数
{{ members.length }}
12.5% 本月增长
账户总余额
¥{{ totalBalance.toLocaleString() }}
资金池总额
累计充值金额
¥{{ totalRecharge.toLocaleString() }}
历史累计
本月会员消费
¥{{ monthlyConsume.toLocaleString() }}
16.7% 环比上月
全部会员列表
会员管理(共 {{ filteredMembers.length }} 人)
{{ lv.label }}
{{ lv.count }} 人
{{ lv.threshold }}
{{ lv.benefits }}
等级规则说明
| 等级图标 | 等级名称 | 余额门槛 | 权益说明 | 当前人数 | 占比 |
|---|---|---|---|---|---|
| {{ lv.label }} | {{ lv.label }} | {{ lv.threshold }} | {{ lv.benefits }} | {{ lv.count }} 人 | {{ lv.percent }}% |
消费记录(共 {{ filteredTransactions.length }} 条)
| 流水ID | 会员 | 类型 | 金额 | 操作后余额 | 时间 |
|---|---|---|---|---|---|
| #T{{ String(t.id).padStart(6, '0') }} | {{ t.member_name }} | {{ t.type === 'recharge' ? '充值' : '消费' }} | {{ t.type === 'recharge' ? '+' : '-' }}¥{{ parseFloat(t.amount).toFixed(2) }} | ¥{{ t.balance_after != null ? parseFloat(t.balance_after).toFixed(2) : '-' }} | {{ formatDateTime(t.created_at) }} |
|
暂无消费记录 |
|||||
操作日志(共 {{ filteredOperationLogs.length }} 条)
| 流水ID | 会员 | 类型 | 金额 | 操作后余额 | 时间 |
|---|---|---|---|---|---|
| {{ idx + 1 }} | {{ formatDateTime(t.created_at) }} | {{ t.type === 'recharge' ? '充值' : '消费' }} | {{ t.member_name }} | {{ t.type === 'recharge' ? '+' : '-' }}¥{{ parseFloat(t.amount).toFixed(2) }} | ¥{{ t.balance_after != null ? parseFloat(t.balance_after).toFixed(2) : '-' }} |
|
暂无操作日志 |
|||||