📊 系统概览
欢迎回来,管理员
👥
总用户数
{{ stats.totalUsers }}
🟢
活跃用户
{{ stats.activeUsers }}
📋
授权码总数
{{ stats.totalLicenses }}
💰
总收入
¥{{ stats.totalRevenue }}
🔮
今日计算次数
{{ stats.todayComputations }}
🔑
当前密钥版本
{{ stats.currentKeyVersion }}
📈 最近活动
| 时间 | 操作 | 用户 | 详情 |
|---|---|---|---|
| {{ activity.time }} | {{ activity.operation }} | {{ activity.user }} | {{ activity.details }} |
🔑 密钥管理
管理系统签名密钥,支持多版本管理和安全轮换
密钥版本列表
| 版本 | 状态 | 有效期 | 授权码数量 | 创建时间 | 当前 | 操作 |
|---|---|---|---|---|---|---|
| {{ key.version }} | {{ getKeyStatusText(key.status) }} | {{ key.valid_from }} ~ {{ key.valid_to }} | {{ key.license_count }} | {{ formatDate(key.created_at) }} | {{ key.is_current ? '✅' : '' }} |
👥 用户管理
查看和管理系统用户
| ID | 用户名 | 邮箱 | 公司 | 状态 | 注册时间 | 操作 |
|---|---|---|---|---|---|---|
| {{ user.id }} | {{ user.username }} | {{ user.email }} | {{ user.company || '-' }} | {{ user.status === 'active' ? '活跃' : '禁用' }} | {{ formatDate(user.created_at) }} |
📋 授权码管理
查看和管理系统授权码
授权码列表
| ID | 授权码 | 类型 | 用户ID | 状态 | 安装时间 | 过期时间 | 操作 |
|---|---|---|---|---|---|---|---|
| {{ license.id }} | {{ license.license_key.substring(0, 20) }}... | {{ license.license_type }} | {{ license.user_id }} | {{ license.is_active ? '有效' : '无效' }} | {{ license.activated_at || '-' }} | {{ license.expire_date }} |
💰 订单管理
查看和管理用户订单
订单列表
| 订单号 | 用户ID | 产品类型 | 金额 | 支付状态 | 创建时间 | 操作 |
|---|---|---|---|---|---|---|
| {{ order.order_no }} | {{ order.user_id }} | {{ order.product_type }} | ¥{{ order.amount }} | {{ order.payment_status }} | {{ formatDate(order.created_at) }} |
🚀 部署管理
一键部署系统更新
部署配置
📋 部署步骤预览
- 连接到服务器并验证身份
- 检测代码变更
- 备份现有版本
- 上传更新文件
- 应用更新并重启服务
- 执行健康检查
📝 操作日志
查看系统操作历史
| 时间 | 操作者 | 操作类型 | 操作对象 | IP地址 | 结果 |
|---|---|---|---|---|---|
| {{ formatDate(log.created_at) }} | {{ log.operator }} | {{ log.operation_type }} | {{ log.target }} | {{ log.ip_address }} | {{ log.success ? '✅ 成功' : '❌ 失败' }} |