数据仪表盘
总用户
{{ dash.users?.total || 0 }}
今日新增 {{ dash.users?.today || 0 }}
VIP 用户
{{ dash.users?.vip || 0 }}
占比 {{ dash.users?.total ? ((dash.users.vip / dash.users.total) * 100).toFixed(1) : 0 }}%
总营收
¥{{ money(dash.revenue?.total) }}
今日 ¥{{ money(dash.revenue?.today) }}
最新批次
{{ dash.latestBatch?.date || '-' }}
{{ dash.latestBatch?.keywords || 0 }} 选题 / {{ dash.latestBatch?.videos || 0 }} 视频
系统状态
| Ark Key | {{ systemStatus?.env?.ark?.message || '-' }} |
|---|---|
| 极致了 Key | {{ systemStatus?.env?.jizhile?.message || '-' }} |
| 抖音探测 | {{ systemStatus?.probes?.douyinSearch?.message || '-' }}({{ systemStatus?.probes?.douyinSearch?.count || 0 }}) |
| 快手探测 | {{ systemStatus?.probes?.kuaishouSearch?.message || '-' }}({{ systemStatus?.probes?.kuaishouSearch?.count || 0 }}) |
| 微信登录 | {{ systemStatus?.env?.wechat?.ready ? '已配置' : '未完整配置' }} |
| 最近可用批次 | {{ formatSystemBatch(systemStatus?.data?.latestNonEmptyBatch) }} |
平台说明
后台仅负责平台级管理:用户、权限、订单、兑换码、推荐激励。
分类、拆解、自动抓取时间与频率都由小程序端的用户自行配置,后台不再做内容管理。
用户管理
| 昵称 | 账号标识 | 会员 | 角色 | 余额 | 注册时间 | 操作 |
|---|---|---|---|---|---|---|
| {{ item.nickname || '-' }} |
{{ item.phone || '-' }}
{{ item.openid || '-' }}
|
{{ item.membership === 'premium' ? 'VIP' : '免费' }} | {{ item.role }} | {{ coin(item.balance) }} 币 | {{ formatDate(item.createdAt) }} |
💰 充值雷达币
用户:{{ rechargeModal.user?.nickname || '-' }} ({{ rechargeModal.user?.phone || '-' }})
{{ rechargeModal.user?.openid || '-' }}
当前余额:{{ coin(rechargeModal.user?.balance) }} 雷达币
订单管理
| 订单号 | 用户 | 金额 | 状态 | 支付单号 | 创建时间 |
|---|---|---|---|---|---|
| {{ item.id }} | {{ item.userName }} | ¥{{ money(item.amount) }} | {{ item.status }} | {{ item.paymentNo || '-' }} | {{ formatDate(item.createdAt) }} |
兑换码管理
批量生成兑换码
同一账号每种类型只能兑换一次
{{ codeValueDesc(codeForm.codeType) }}
一次生成多少个兑换码
每个码可以被使用几次(通常为 1)
兑换码在多少天内有效
方便管理和追踪
将生成 {{ codeForm.count }} 个兑换码,
每个码可兑换 {{ codeForm.value }} {{ codeValueUnit(codeForm.codeType) }},
有效期 {{ codeForm.expiresInDays }} 天
✅ 生成成功!共 {{ generatedCodes.length }} 个兑换码:
{{ generatedCodes.join('\n') }}
兑换码列表
| 兑换码 | 类型 | 价值(天数) | 使用情况 | 批次名称 | 过期时间 |
|---|---|---|---|---|---|
| {{ item.code }} | {{ codeTypeLabel(item.codeType) }} | {{ item.value }} {{ codeValueUnit(item.codeType) }} | 已用完 {{ item.usedCount }}/{{ item.maxUses }} 未使用 | {{ item.batchName || '-' }} | {{ formatDate(item.expiresAt) }} |
推荐激励
总推荐
{{ refStats.total || 0 }}
有效推荐
{{ refStats.valid || 0 }}
VIP 转化
{{ refStats.vipConversions || 0 }}
累计奖励
¥{{ money(refStats.totalRewardsGranted) }}
| 排名 | 用户 | 邀请数 |
|---|---|---|
| {{ index + 1 }} | {{ item.nickname || item.referrerId }} | {{ item.count }} |