矩阵管理系统 ▾
未登录 退出
仪表盘 设备 账号 任务 菜谱 代理 报告
在线设备
42
▴ 较昨日 +3
活跃账号
128
▴ 较昨日 +6
今日任务
36
▴ 已完成 28
系统告警
2
▾ 待处理
最近任务 查看全部 →
任务名称 平台 账号 状态 执行时间
油管日常养号 YouTube
Yyoutube_01
进行中 2026-05-09 10:00
小红书浏览互动 小红书
Rredbook_03
进行中 2026-05-09 09:30
抖音浏览养号 抖音
Ddouyin_02
进行中 2026-05-09 09:00
TikTok浏览点赞 TikTok
Ttiktok_01
已暂停 2026-05-09 08:00
快手日常浏览 快手
Kkuaishou_01
已完成 2026-05-09 07:30
设备状态 在线 42 / 共 50
容器01
魔云腾 安卓14 📍北京
▶ 小红书 · 微信
容器02
魔云腾 安卓14 📍洛杉矶
▶ TikTok · 抖音
浏览器01
比特 Chrome 📍东京
▶ YouTube
浏览器02
比特 Chrome 📍--
离线
// ═══════════════════════════════════════ // 页面渲染 — 不用子页面HTML,JS直接画 function renderAccountsAdd() { return '
' +'
账号管理 > 添加账号
' +'

添加账号

' +'

选择平台,填写账号信息

' +'
1. 选择平台
' +'
' +'
YouTube
' +'
📕
小红书
' +'
🎵
抖音
' +'
🌍
TikTok
' +'
快手
' +'
💬
微信
' +'
' +'
2. 填写账号信息
' +'
' +'
' +'
' +'
' +'
' +'
' +'' +'' +'
' +'
'; } function selPf(el) { document.querySelectorAll('.pf-card').forEach(function(c){c.style.border='1px solid #e8e8e8';c.style.background='#fff'}); el.style.border='2px solid #1c5cfb';el.style.background='#eff6ff'; } function submitAccount() { var p = document.querySelector('.pf-card[style*="1c5cfb"]') || document.querySelector('.pf-card.active'); var pf = p ? p.getAttribute('data-pf') : 'YouTube'; var n = document.getElementById('accName').value.trim(); var e = document.getElementById('accEmail').value.trim(); var pw = document.getElementById('accPwd').value.trim(); if(!n||!e||!pw){alert('请填写完整信息');return;} fetch('/api/admin/accounts', { method:'POST', headers:{'Authorization':'Bearer '+(localStorage.getItem('admin_token')||localStorage.getItem('leiyun_token')||''),'Content-Type':'application/json'}, body:JSON.stringify({user_id:1,platform:pf,account_name:n,email:e,password:pw}) }).then(function(r){return r.json()}).then(function(d){ if(d.ok){alert('添加成功!');loadPage('accounts')}else{alert('添加失败')} }).catch(function(){alert('网络错误')}); } // renderTaskCreate, renderRecipeEditor 等同样模式...