diff --git a/01_卡资(金)/金仓_存储备份/分布式算力管控/SKILL.md b/01_卡资(金)/金仓_存储备份/分布式算力管控/SKILL.md index b94a0f01..c70d8dec 100644 --- a/01_卡资(金)/金仓_存储备份/分布式算力管控/SKILL.md +++ b/01_卡资(金)/金仓_存储备份/分布式算力管控/SKILL.md @@ -747,7 +747,46 @@ systemctl --user -M www@ list-timers 2>/dev/null | **目标端口** | 22、2222、22022 等 SSH 端口 | | **防护** | fail2ban + iptables recent + MaxStartups/MaxAuthTries | -#### 类型五:容器逃逸与供应链攻击 +#### 类型五:Docker API 暴露攻击(⚠️ 2026-03 新发现 · 真正入侵根因) + +| 维度 | 详情 | +|:---|:---| +| **目的** | 通过暴露的 Docker API(2375 端口)远程控制服务器,植入挖矿/后门 | +| **入侵方式** | Docker daemon 配置 `-H tcp://0.0.0.0:2375` 无认证 → 任何人可远程执行容器命令 | +| **攻击手法** | `docker exec` 进入已有容器 → 下载恶意二进制 → 写入 systemd 持久化 | +| **特征** | busybox:latest 镜像(经典 Docker 利用镜像)、隐藏二进制 `/.Dj9joc9QhUb46rxZIan562mFq`、`cdngdn.service` | +| **伪装** | 进程名伪装为 `-bash`,实际为挖矿程序,占用 165% CPU | +| **持久化** | systemd service `cdngdn.service`(Restart=always)指向 `/var/spool/.system/.system` | +| **危害等级** | 🔴 极严重 — Docker API 等于 root 权限,攻击者可做任何事 | + +**IOC 指标(2026-03 实战)**: +```bash +# Docker API 暴露检查(必须为空或不可达) +curl -s http://127.0.0.1:2375/version 2>/dev/null +ss -tlnp | grep 2375 +# 可疑 Docker 镜像 +docker images | grep -i busybox +# 隐藏的 systemd 服务 +systemctl list-unit-files --state=enabled | grep -Ev 'network|sshd|crond|nginx|php|bt|mysql|redis|firewalld' +# 根目录隐藏文件 +ls -la / | grep '^\.\.' +find / -maxdepth 1 -name ".*" -type f 2>/dev/null +# /var/spool 隐藏目录 +find /var/spool/ -name ".*" -type d 2>/dev/null +``` + +**防护措施**: +```bash +# 1. Docker daemon 绝不暴露 TCP(仅用 unix socket) +# /etc/systemd/system/docker.service 或 /usr/lib/systemd/system/docker.service +# ExecStart 中删除 -H tcp://0.0.0.0:2375 +# 2. iptables 封堵 2375 +iptables -A INPUT -p tcp --dport 2375 -j DROP +# 3. 删除可疑镜像 +docker rmi busybox:latest 2>/dev/null +``` + +#### 类型六:容器逃逸与供应链攻击 | 维度 | 详情 | |:---|:---| @@ -758,10 +797,12 @@ systemctl --user -M www@ list-timers 2>/dev/null ### 11.2 真实攻击链分析(KR 宝塔 2026-02 实战) -> **攻击类型**:Mirai 变种僵尸网络 + 加密挖矿 -> **攻击时间**:2026 年 2 月 +> **攻击类型**:Mirai 变种僵尸网络 + 加密挖矿 + Docker API 利用 +> **攻击时间**:2026 年 2-3 月(持续入侵) > **受害服务器**:kr宝塔 43.139.27.93(腾讯云 2核4G) -> **入侵入口**:Discuz 论坛(PHP 5.6)— www.lkdie.com / db.lkdie.com +> **入侵入口**: +> - **主入口(2026-03 确认)**:Docker API 2375 端口暴露公网无认证 +> - **辅助入口(2026-02)**:Discuz 论坛(PHP 5.6)— www.lkdie.com / db.lkdie.com #### 完整攻击链路(7 步) @@ -816,12 +857,26 @@ systemctl --user -M www@ list-timers 2>/dev/null | 维度 | 攻击者设计 | 我方弱点 | |:---|:---|:---| -| **入口** | 选择 PHP 5.6 EOL 应用 | **Discuz 运行在已停止维护的 PHP 5.6** | -| **权限** | www 用户足够(无需 root) | www 用户有 shell 权限、可执行任意二进制 | -| **隐蔽** | 进程名伪装为 kthreadd | 没有实时进程监控告警 | -| **持久化** | 4 种方式并行 | 清一种不够,必须全清 | -| **收益** | 挖矿 + 扫描双线程 | CPU 100% 但无主动告警机制 | +| **入口 1(主)** | Docker API 2375 暴露 = root 权限 | **Docker daemon 监听 0.0.0.0:2375 无认证** | +| **入口 2(辅)** | 选择 PHP 5.6 EOL 应用 | **Discuz 运行在已停止维护的 PHP 5.6** | +| **权限** | Docker API = root;www 用户也够 | Docker 无认证 + www 有 shell + iptables 为空 | +| **隐蔽** | 进程名伪装为 `-bash`/`kthreadd`,文件名随机化 | 没有实时进程监控告警 | +| **持久化** | systemd service(Restart=always)+ .bashrc + crontab | 清一种不够,必须全清 | +| **收益** | 挖矿双线程(165% CPU) | CPU 100% 但无主动告警机制 | | **扩散** | 自动化 SSH 扫描扩散 | 无 OUTPUT 规则限制对外连接 | +| **防火墙** | iptables 规则为空 | **服务器完全无 iptables 防护** | + +#### 2026-03 新攻击链(Docker API 入侵) + +``` +攻击者扫描公网 → 发现 43.139.27.93:2375 Docker API 无认证 + → curl http://43.139.27.93:2375/version(确认可用) + → docker exec 进入已有容器(wantui) + → 下载恶意二进制 → 写入 /.Dj9joc9QhUb46rxZIan562mFq + → 创建 systemd service cdngdn.service(Restart=always) + → 持久化在 /var/spool/.system/.system + → 启动挖矿(165% CPU,伪装为 -bash) +``` #### 清理与修复记录 @@ -989,7 +1044,26 @@ iptables -A OUTPUT -p tcp --dport 22 -m state --state NEW \ -m recent --update --seconds 60 --hitcount 5 --name SSH_OUT -j DROP ``` -#### 11.4.3 应用层防护 +#### 11.4.3 Docker 安全基线(⚠️ 优先级最高) + +```bash +# 1. Docker API 绝不暴露 TCP(这是 KR 宝塔被入侵的真正根因) +# 检查:ss -tlnp | grep 2375 应该为空 +ss -tlnp | grep 2375 && echo "🔴 Docker API 暴露!立即修复" || echo "✅ Docker API 安全" + +# 2. 检查 Docker daemon 配置 +grep -r 'tcp://0.0.0.0' /etc/docker/ /usr/lib/systemd/system/docker.service 2>/dev/null +# 如发现 -H tcp://0.0.0.0:2375,立即删除该参数 + +# 3. 检查可疑 Docker 镜像 +docker images | grep -i 'busybox\|alpine.*latest' 2>/dev/null + +# 4. iptables 封堵 Docker API 端口 +iptables -C INPUT -p tcp --dport 2375 -j DROP 2>/dev/null || \ + iptables -A INPUT -p tcp --dport 2375 -j DROP +``` + +#### 11.4.4 应用层防护 ```bash # 1. www 用户安全加固 @@ -1025,6 +1099,9 @@ systemctl enable fail2ban # node_security_baseline_check.sh — 节点安全基线快速检查 echo "===== 安全基线检查 =====" +echo "--- Docker API(最高优先级)---" +ss -tlnp | grep -q 2375 && echo "🔴 Docker API 2375 暴露!立即关闭" || echo "✅ Docker API 安全" + echo "--- SSH 配置 ---" grep -E '^(Port|PermitRootLogin|MaxAuthTries|PasswordAuthentication)' /etc/ssh/sshd_config @@ -1291,6 +1368,7 @@ fi | 攻击类型 | 防守措施 | 检测方式 | 响应方式 | 脚本 | |:---|:---|:---|:---|:---| +| **Docker API 暴露** ⚠️ | **禁止 TCP 监听** + iptables DROP 2375 + 删 busybox | `ss -tlnp \| grep 2375` + Docker 镜像审计 | 关闭 TCP + 删恶意镜像/容器 + 清 systemd | 手动 + baseline | | **Mirai 僵尸网络** | OUTPUT iptables + www 禁 shell + fail2ban | 对外 SSH 连接数监控 | 杀进程 + 清持久化 + 封 IP | `threat_cleaner.sh` | | **挖矿木马** | /tmp noexec + www 无 shell + 进程白名单 | CPU 100% + 可疑进程名 + 矿池端口 | 杀进程 + 删文件 + 清 crontab | `threat_scanner.sh --fix` | | **PHP 漏洞利用** | **升级 PHP** + disable_functions + Nginx 路径封堵 + WAF | WebShell 扫描 + 文件完整性 + 异常 PHP 日志 | 删 WebShell + 升级 + 加固目录权限 | `php_hardening.sh` | diff --git a/01_卡资(金)/金仓_存储备份/服务器管理/SKILL.md b/01_卡资(金)/金仓_存储备份/服务器管理/SKILL.md index edb2a879..09a70017 100644 --- a/01_卡资(金)/金仓_存储备份/服务器管理/SKILL.md +++ b/01_卡资(金)/金仓_存储备份/服务器管理/SKILL.md @@ -61,6 +61,7 @@ kr宝塔: qcWubCdlfFjS2b2DMT1lzPFaDfmv1cBT 8. **执行形式强制顺序**:宝塔服务器上任何操作,**一律按「宝塔 API → SSH → TAT」顺序尝试**。能通过宝塔 API 完成的先用 API;API 不可用(超时、IP 校验失败等)再用 SSH 在机内执行;SSH 不可用再用腾讯云 TAT。不得跳过顺序。 9. **前置检查(强制)**:每次对服务器做**修改类操作**(改配置、改站点、改 Node 项目、重启服务等)之前,**必须先检查目标项目及周边项目/应用**(如通过宝塔 API `get_project_list` 看 Node 项目状态、或 SSH 看进程与端口),确认修改不会导致其他应用不可用后再执行;执行后再次确认目标与周边状态正常。 10. **PHP 5.6 / Discuz 防护(强制)**:发现 PHP 5.6 **必须升级**(至少 7.4);Discuz 站点必须加固目录权限、Nginx 路径封堵、PHP disable_functions;www 用户 shell 设为 `/sbin/nologin` 并锁定密码。详见 Q6 及「分布式算力管控 SKILL §11.3」。 +11. **Docker API 安全(强制 · 最高优先级)**:Docker daemon **禁止** TCP 监听(`-H tcp://0.0.0.0:2375`),仅用 unix socket。iptables 必须 DROP 2375 端口。发现 `busybox:latest` 镜像立即删除并排查入侵。2026-03 KR 宝塔被入侵的真正根因就是 Docker API 暴露。详见「分布式算力管控 SKILL §11.1 类型五」。 --- diff --git a/02_卡人(水)/水桥_平台对接/飞书管理/脚本/.feishu_tokens.json b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/.feishu_tokens.json index 56775934..51b6cd86 100644 --- a/02_卡人(水)/水桥_平台对接/飞书管理/脚本/.feishu_tokens.json +++ b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/.feishu_tokens.json @@ -1,6 +1,6 @@ { - "access_token": "u-cuz3ckcRteiVGpnnUtHq59lh16bxghoVogGaFwk027lV", - "refresh_token": "ur-fWPrc3KpdblHZapGmPPKLIlh1Azxghijr0GaVw0027lV", + "access_token": "u-eL2pk6ReF9k9juMmZ.szEPlh1Ab1ghiPpwGaIN0026hE", + "refresh_token": "ur-fSj_fJFvFdIq8kspg0TcJplh1CH1ghirNMGaYA00274J", "name": "飞书用户", "auth_time": "2026-03-14T12:12:52.532017" } \ No newline at end of file diff --git a/02_卡人(水)/水桥_平台对接/飞书管理/脚本/read_soul_party_sheets.py b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/read_soul_party_sheets.py new file mode 100644 index 00000000..2c25beb6 --- /dev/null +++ b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/read_soul_party_sheets.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python3 +""" +读取 Soul 派对运营报表 - 飞书多 sheet 数据 +用法:python3 read_soul_party_sheets.py +""" +import os +import sys +import json +import requests +from urllib.parse import quote + +FEISHU_SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) +TOKEN_FILE = os.path.join(FEISHU_SCRIPT_DIR, '.feishu_tokens.json') +SPREADSHEET_TOKEN = os.environ.get('FEISHU_SPREADSHEET_TOKEN', 'wikcnIgAGSNHo0t36idHJ668Gfd') + +# 用户指定的 6 个 sheet +SHEET_IDS = ['bJR5sA', '7A3Cy9', '0uU6Z1', 'RLJkLX', 'K9F2Ab', 'PrDCKC'] + + +def load_token(): + if not os.path.exists(TOKEN_FILE): + return None + with open(TOKEN_FILE, 'r', encoding='utf-8') as f: + return json.load(f).get('access_token') + + +def refresh_token(): + if not os.path.exists(TOKEN_FILE): + return None + with open(TOKEN_FILE, 'r', encoding='utf-8') as f: + data = json.load(f) + refresh = data.get('refresh_token') + if not refresh: + return data.get('access_token') + r = requests.post( + 'https://open.feishu.cn/open-apis/auth/v3/app_access_token/internal', + json={'app_id': 'cli_a48818290ef8100d', 'app_secret': 'dhjU0qWd5AzicGWTf4cTqhCWJOrnuCk4'}, + timeout=10, + ) + app_token = (r.json() or {}).get('app_access_token') + if not app_token: + return data.get('access_token') + r2 = requests.post( + 'https://open.feishu.cn/open-apis/authen/v1/oidc/refresh_access_token', + headers={'Authorization': f'Bearer {app_token}', 'Content-Type': 'application/json'}, + json={'grant_type': 'refresh_token', 'refresh_token': refresh}, + timeout=10, + ) + out = r2.json() + if out.get('code') == 0 and out.get('data', {}).get('access_token'): + data['access_token'] = out['data']['access_token'] + data['refresh_token'] = out['data'].get('refresh_token', refresh) + with open(TOKEN_FILE, 'w', encoding='utf-8') as f: + json.dump(data, f, ensure_ascii=False, indent=2) + return data['access_token'] + return data.get('access_token') + + +def read_sheet_range(access_token, spreadsheet_token, range_str): + """读取表格范围,返回 (values, status_code, body)""" + url = f'https://open.feishu.cn/open-apis/sheets/v2/spreadsheets/{spreadsheet_token}/values/{quote(range_str, safe="")}' + r = requests.get( + url, + headers={'Authorization': f'Bearer {access_token}'}, + timeout=15, + ) + if r.status_code != 200: + return None, r.status_code, r.json() if r.text else {} + body = r.json() + if body.get('code') != 0: + return None, r.status_code, body + vals = (body.get('data') or {}).get('valueRange', {}).get('values') or [] + return vals, r.status_code, body + + +def main(): + token = load_token() or refresh_token() + if not token: + print('❌ 无法获取飞书 Token,请先运行 auto_log.py 完成授权') + sys.exit(1) + + all_data = {} + for sheet_id in SHEET_IDS: + range_str = f'{sheet_id}!A1:AG50' + vals, code, body = read_sheet_range(token, SPREADSHEET_TOKEN, range_str) + if code == 401 or (body.get('code') in (99991677, 99991663)): + token = refresh_token() + if token: + vals, code, body = read_sheet_range(token, SPREADSHEET_TOKEN, range_str) + + if vals is not None: + all_data[sheet_id] = vals + print(f'✅ sheet={sheet_id}: 读取 {len(vals)} 行 x {len(vals[0]) if vals else 0} 列') + else: + all_data[sheet_id] = {'error': body.get('msg', body), 'code': body.get('code')} + print(f'❌ sheet={sheet_id}: {body.get("msg", body)}') + + # 输出 JSON 便于使用 + output_path = os.path.join(FEISHU_SCRIPT_DIR, 'soul_party_sheets_data.json') + def _serialize(obj): + if isinstance(obj, (list, dict)): + return obj + return str(obj) if obj is not None else None + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(all_data, f, ensure_ascii=False, indent=2, default=str) + print(f'\n📁 已保存到: {output_path}') + return all_data + + +if __name__ == '__main__': + result = main() + # 简洁打印各 sheet 前几行 + print('\n--- 各 sheet 预览(前3行)---') + for sid, data in result.items(): + if isinstance(data, list) and data: + print(f'\n### sheet={sid} ###') + for i, row in enumerate(data[:3]): + print(f' Row{i+1}: {row[:8]}...' if len(row) > 8 else f' Row{i+1}: {row}') + elif isinstance(data, dict) and 'error' in data: + print(f'\n### sheet={sid} ### 错误: {data.get("error")}') diff --git a/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_sheets_data.json b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_sheets_data.json new file mode 100644 index 00000000..0c7c477a --- /dev/null +++ b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_sheets_data.json @@ -0,0 +1,12978 @@ +{ + "bJR5sA": [ + [ + "3月", + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + "统计" + ], + [ + "一、效果数据", + null, + "113场", + "114场", + "115场", + "116场", + "117场", + "118场", + null, + "119场", + "120场", + 121, + "122场", + "123场", + "124场", + null, + "125场", + "126场", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "主题", + null, + "钱一月Ai创业私域", + "Ai创业赚钱私域", + "破产两次 家庭先于事业", + "量化猎头人才 职场分享", + "3d打印", + "如何提升你的运气", + null, + "分享你最赚钱一月Ai", + "分享你最赚钱一月Ai", + "炸房", + "分享你最赚钱一月Ai", + "小龙虾与AI工具", + "房主号设备与手机业务线", + null, + "一键安装小龙虾u盘", + "人字托开派对", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(C3:AD3, \"<>0\", C3:AD3),\"\")" + ], + [ + "时长", + null, + 163, + 163, + 156, + 154, + 154, + 190, + null, + 154, + 165, + 157, + 155, + 146, + 95, + null, + 127, + 123, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C4:AD4)" + ], + [ + "Soul推流人数", + null, + 34290, + 42360, + 36974, + 38136, + 51602, + 74873, + null, + 50692, + 63627, + "0.00373*C11+305", + 0, + null, + 0, + null, + 50000, + 0, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C5:AD5)" + ], + [ + "进房人数", + null, + 430, + 445, + 484, + 418, + 503, + 586, + null, + 446, + 569, + 577, + 165, + 176, + 171, + null, + 427, + 161, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C6:AD6)" + ], + [ + "人均时长", + null, + 9, + 8, + 8, + 11, + 11, + 10, + null, + 11, + 11, + 11, + 8, + 10, + 8, + null, + null, + 10, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "AVERAGEA((C7:AD7))" + ], + [ + "互动数量", + null, + 110, + 139, + 82, + 104, + 118, + 149, + null, + 110, + 117, + null, + 55, + 68, + 48, + null, + null, + 63, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C8:AD8)" + ], + [ + "礼物", + null, + 13, + 1, + 1, + 1, + 16, + 46, + null, + 20, + 2, + null, + 0, + 4, + 0, + null, + null, + 5, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C9:AD9)" + ], + [ + "灵魂力", + null, + 66, + 29, + 3, + 60, + 351, + 7456, + null, + 3315, + 16, + null, + 0, + 21, + 0, + null, + null, + 9, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C10:AD10)" + ], + [ + "增加关注", + null, + 20, + 19, + 15, + 19, + 36, + 33, + null, + 26, + 29, + null, + 7, + 13, + 7, + null, + null, + 10, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C11:AD11)" + ], + [ + "最高在线", + null, + 50, + 54, + 56, + 60, + 72, + 65, + null, + 64, + 64, + 78, + 23, + 25, + 32, + null, + 42, + 24, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "AVERAGEA(C12:AD12)" + ], + [ + "推流进房人数", + "IFERROR(B5/B6,\"\")", + 79.7, + 95.2, + "IFERROR(E5/E6,\"\")", + "IFERROR(F5/F6,\"\")", + "IFERROR(G5/G6,\"\")", + "IFERROR(H5/H6,\"\")", + "IFERROR(I5/I6,\"\")", + "IFERROR(J5/J6,\"\")", + "IFERROR(K5/K6,\"\")", + "IFERROR(L5/L6,\"\")", + 0, + "IFERROR(N5/N6,\"\")", + "IFERROR(O5/O6,\"\")", + "IFERROR(P5/P6,\"\")", + "IFERROR(Q5/Q6,\"\")", + "IFERROR(R5/R6,\"\")", + "IFERROR(S5/S6,\"\")", + "IFERROR(T5/T6,\"\")", + "IFERROR(U5/U6,\"\")", + "IFERROR(V5/V6,\"\")", + "IFERROR(W5/W6,\"\")", + "IFERROR(X5/X6,\"\")", + "IFERROR(Y5/Y6,\"\")", + "IFERROR(Z5/Z6,\"\")", + "IFERROR(AA5/AA6,\"\")", + "IFERROR(AB5/AB6,\"\")", + "IFERROR(AC5/AC6,\"\")", + "IFERROR(AD5/AD6,\"\")", + "IFERROR(AE5/AE6,\"\")", + "IFERROR(AF5/AF6,\"\")", + "IFERROR(AVERAGEIF(C13:AD13, \"<>0\", C13:AD13),\"\")" + ], + [ + "1分钟进多少人", + "IFERROR(B6/B4,\"\")", + 2.6, + 2.7, + "IFERROR(E6/E4,\"\")", + "IFERROR(F6/F4,\"\")", + "IFERROR(G6/G4,\"\")", + "IFERROR(H6/H4,\"\")", + null, + 2.9, + 3.4, + "IFERROR(L6/L4,\"\")", + 1.1, + "IFERROR(N6/N4,\"\")", + "IFERROR(O6/O4,\"\")", + "IFERROR(P6/P4,\"\")", + "IFERROR(Q6/Q4,\"\")", + "IFERROR(R6/R4,\"\")", + "IFERROR(S6/S4,\"\")", + "IFERROR(T6/T4,\"\")", + "IFERROR(U6/U4,\"\")", + "IFERROR(V6/V4,\"\")", + "IFERROR(W6/W4,\"\")", + "IFERROR(X6/X4,\"\")", + "IFERROR(Y6/Y4,\"\")", + "IFERROR(Z6/Z4,\"\")", + "IFERROR(AA6/AA4,\"\")", + "IFERROR(AB6/AB4,\"\")", + "IFERROR(AC6/AC4,\"\")", + "IFERROR(AD6/AD4,\"\")", + "IFERROR(AE6/AE4,\"\")", + "IFERROR(AF6/AF4,\"\")", + "IFERROR(AVERAGEIF(C14:AD14, \"<>0\", C14:AD14),\"\")" + ], + [ + "小程序访问", + "IFERROR(B11/B6,\"\")", + "IFERROR(C11/C6,\"\")", + "IFERROR(D11/D6,\"\")", + "IFERROR(E11/E6,\"\")", + "IFERROR(F11/F6,\"\")", + "IFERROR(G11/G6,\"\")", + "IFERROR(H11/H6,\"\")", + null, + 0, + 0, + "IFERROR(L11/L6,\"\")", + 0, + "IFERROR(N11/N6,\"\")", + "IFERROR(O11/O6,\"\")", + "IFERROR(P11/P6,\"\")", + "IFERROR(Q11/Q6,\"\")", + "IFERROR(R11/R6,\"\")", + "IFERROR(S11/S6,\"\")", + "IFERROR(T11/T6,\"\")", + "IFERROR(U11/U6,\"\")", + "IFERROR(V11/V6,\"\")", + "IFERROR(W11/W6,\"\")", + "IFERROR(X11/X6,\"\")", + "IFERROR(Y11/Y6,\"\")", + "IFERROR(Z11/Z6,\"\")", + "IFERROR(AA11/AA6,\"\")", + "IFERROR(AB11/AB6,\"\")", + "IFERROR(AC11/AC6,\"\")", + "IFERROR(AD11/AD6,\"\")", + "IFERROR(AE11/AE6,\"\")", + "IFERROR(AF11/AF6,\"\")", + "IFERROR(AVERAGEIF(C15:AD15, \"<>0\", C15:AD15),\"\")" + ], + [ + "加微率", + "IFERROR(B19/B6,\"\")", + "IFERROR(C19/C6,\"\")", + "IFERROR(D19/D6,\"\")", + "IFERROR(E19/E6,\"\")", + "IFERROR(F19/F6,\"\")", + "IFERROR(G19/G6,\"\")", + "IFERROR(H19/H6,\"\")", + null, + "0%", + "0%", + "IFERROR(L19/L6,\"\")", + "0%", + "IFERROR(N19/N6,\"\")", + "IFERROR(O19/O6,\"\")", + "IFERROR(P19/P6,\"\")", + "IFERROR(Q19/Q6,\"\")", + "IFERROR(R19/R6,\"\")", + "IFERROR(S19/S6,\"\")", + "IFERROR(T19/T6,\"\")", + "IFERROR(U19/U6,\"\")", + "IFERROR(V19/V6,\"\")", + "IFERROR(W19/W6,\"\")", + "IFERROR(X19/X6,\"\")", + "IFERROR(Y19/Y6,\"\")", + "IFERROR(Z19/Z6,\"\")", + "IFERROR(AA19/AA6,\"\")", + "IFERROR(AB19/AB6,\"\")", + "IFERROR(AC19/AC6,\"\")", + "IFERROR(AD19/AD6,\"\")", + "IFERROR(AE19/AE6,\"\")", + "IFERROR(AF19/AF6,\"\")", + "IFERROR(AVERAGEIF(C16:AD16, \"<>0\", C16:AD16),\"\")" + ], + [ + "二、结果数据", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(C17:AD17, \"<>0\", C17:AD17),\"\")" + ], + [ + "入群数量", + null, + null, + null, + null, + 2, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C18:AD18)" + ], + [ + "微信进粉人数", + null, + null, + null, + 3, + 2, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C19:AD19)" + ], + [ + "线下带人", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "切片分发", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "曝光量", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(C22:AD22)" + ], + [ + "发布人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "三、成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(C24:AD24, \"<>0\", C24:AD24),\"\")" + ], + [ + "运营成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(C25:AD25, \"<>0\", C25:AD25),\"\")" + ], + [ + "支付费用", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(C26:AD26, \"<>0\", C26:AD26),\"\")" + ], + [ + "单粉产值", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "【今日总结】\n1、自我剖析\n2、总结规律\n3、问题处理\n4、明日优化\t", + null, + { + "fileToken": "G02HbB9ImobJA8xo6V7cGaFnn9g", + "height": 12982, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/G02HbB9ImobJA8xo6V7cGaFnn9g/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1208 + }, + { + "fileToken": "KbwwbLY84ozm3dxAlyocCOyTnfg", + "height": 7434, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KbwwbLY84ozm3dxAlyocCOyTnfg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2364 + }, + { + "fileToken": "SbosbqKmvot7LrxecJkcXr3ynmb", + "height": 3407, + "link": "internal-api-space.feishu.cn/space/api/box/stream/download/v2/cover/SbosbqKmvot7LrxecJkcXr3ynmb?height=1280&width=1280&policy=equal&mount_point=sheet_image&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf", + "text": "", + "type": "embed-image", + "width": 1200 + }, + { + "fileToken": "FIHUbw5KFoRDnbxL55lcSkxGnhe", + "height": 9129, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/FIHUbw5KFoRDnbxL55lcSkxGnhe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1424 + }, + { + "fileToken": "Hr4PbvteDoQuBvxgsFkcKpyonEc", + "height": 9787, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Hr4PbvteDoQuBvxgsFkcKpyonEc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1276 + }, + { + "fileToken": "FSRrbyjT3oll0YxShKac1h4pnAb", + "height": 1436, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/FSRrbyjT3oll0YxShKac1h4pnAb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + null, + { + "fileToken": "WDKMbL4ExoMY9Rx1pcbcNkLOnNb", + "height": 8947, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/WDKMbL4ExoMY9Rx1pcbcNkLOnNb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1352 + }, + { + "fileToken": "Ly1jbsIWOoNGo8xfz5xcvyR2nDc", + "height": 5545, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Ly1jbsIWOoNGo8xfz5xcvyR2nDc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1332 + }, + { + "fileToken": "RiLMbnWUNol4gwx1sXAcs9tkneh", + "height": 8130, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/RiLMbnWUNol4gwx1sXAcs9tkneh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1822 + }, + { + "fileToken": "BeCwbxpOwoAFNex45pWcfOXZn7f", + "height": 7071, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/BeCwbxpOwoAFNex45pWcfOXZn7f/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1266 + }, + { + "fileToken": "R0fKb6EmNoX2Z3xykPrctgzOnch", + "height": 8088, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/R0fKb6EmNoX2Z3xykPrctgzOnch/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1260 + }, + { + "fileToken": "GZCMb04tCoVbcSxGKxOcJsN2nWf", + "height": 7140, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/GZCMb04tCoVbcSxGKxOcJsN2nWf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1122 + }, + null, + { + "fileToken": "YxiPbR6fhoCiexx4SyQcTi3ln6g", + "height": 6973, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/YxiPbR6fhoCiexx4SyQcTi3ln6g/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1838 + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "派对录屏", + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn6yjg6866c3gl4ibd72vr", + "text": "https://cunkebao.feishu.cn/minutes/obcn6yjg6866c3gl4ibd72vr", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn7nd82835thy4he3974a8", + "text": "https://cunkebao.feishu.cn/minutes/obcn7nd82835thy4he3974a8", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn8cgvnzk15yfy3buak735", + "text": "https://cunkebao.feishu.cn/minutes/obcn8cgvnzk15yfy3buak735", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn81825en52vt3eqoo482e", + "text": "https://cunkebao.feishu.cn/minutes/obcn81825en52vt3eqoo482e", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn9phnds9a96ma6t8ixa3z", + "text": "https://cunkebao.feishu.cn/minutes/obcn9phnds9a96ma6t8ixa3z", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnaee1h83l1s169e3a18qp", + "text": "https://cunkebao.feishu.cn/minutes/obcnaee1h83l1s169e3a18qp", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnbrc925796a6u4c667931", + "text": "https://cunkebao.feishu.cn/minutes/obcnbrc925796a6u4c667931", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcncgo5id41694xyx3n5b1o", + "text": "https://cunkebao.feishu.cn/minutes/obcncgo5id41694xyx3n5b1o", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnc53697q9mj6h1go6v25e", + "text": "https://cunkebao.feishu.cn/minutes/obcnc53697q9mj6h1go6v25e", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcndup1zc19ppqv519m7x4s", + "text": "https://cunkebao.feishu.cn/minutes/obcndup1zc19ppqv519m7x4s", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcneihvg45f957tm3t8yu58", + "text": "https://cunkebao.feishu.cn/minutes/obcneihvg45f957tm3t8yu58", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcne7q5dto13494k9a56881", + "text": "https://cunkebao.feishu.cn/minutes/obcne7q5dto13494k9a56881", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcngk79jql2y4u773o2h5lc", + "text": "https://cunkebao.feishu.cn/minutes/obcngk79jql2y4u773o2h5lc", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnha23t28fxfq8g8h5392d", + "text": "https://cunkebao.feishu.cn/minutes/obcnha23t28fxfq8g8h5392d", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcndu92yeghd9bm917z1e1b", + "text": "https://cunkebao.feishu.cn/minutes/obcndu92yeghd9bm917z1e1b", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "团队会议", + null, + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn6y4t3e67m5ttrn4v4z3d?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn6y4t3e67m5ttrn4v4z3d?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn7noeh95951593g24u47q?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn7noeh95951593g24u47q?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn8c96id528s29m35f3c41", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn8c96id528s29m35f3c41", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn817v34n984h1kw1n2bt2", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn817v34n984h1kw1n2bt2", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn9p8irb83z38z5keai5sm", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn9p8irb83z38z5keai5sm", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnae7dtms82a6242sdk296", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnae7dtms82a6242sdk296", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnbr1v21p4w632d74v953x", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnbr1v21p4w632d74v953x", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcncgzk5atw8333pr9x26dz?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcncgzk5atw8333pr9x26dz?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnc5ew1r5id5f1epv6w151?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnc5ew1r5id5f1epv6w151?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcndt96wlw98668j8azo7br", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcndt96wlw98668j8azo7br", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcneie352rv83u8ac851ekg", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcneie352rv83u8ac851ekg", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcne7k3msifgmvqw46599st", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcne7k3msifgmvqw46599st", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcngkm32wb33sx7ml9z3459", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcngkm32wb33sx7ml9z3459", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "内部会议智要", + null, + null, + null, + { + "fileToken": "Ms7abfOmhoWwNBxEDgacnhpGnUd", + "height": 6802, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Ms7abfOmhoWwNBxEDgacnhpGnUd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1274 + }, + { + "fileToken": "PJISbTGRtoHrmRxurF0chCw2njb", + "height": 8408, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/PJISbTGRtoHrmRxurF0chCw2njb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1274 + }, + { + "fileToken": "LXrQbvHKpoAMFdxmpQtcZcH0nFd", + "height": 8964, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/LXrQbvHKpoAMFdxmpQtcZcH0nFd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1272 + }, + { + "fileToken": "I7OhboZOZoZMtkxZSALcIGUqn7e", + "height": 6194, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/I7OhboZOZoZMtkxZSALcIGUqn7e/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1232 + }, + null, + { + "fileToken": "UdgNbUmy8oea9xxibrxcFMe1nVc", + "height": 5614, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/UdgNbUmy8oea9xxibrxcFMe1nVc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1414 + }, + null, + null, + { + "fileToken": "C4QPbfIWDodi0FxcbhlclDMrnKe", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/C4QPbfIWDodi0FxcbhlclDMrnKe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 302 + }, + { + "fileToken": "GJqrbX12CokNsOxWPyWcEVQ6n3d", + "height": 6695, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/GJqrbX12CokNsOxWPyWcEVQ6n3d/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1022 + }, + { + "fileToken": "DXvXbjFC2oQZ8gxe5gQcdpwEnHd", + "height": 5995, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/DXvXbjFC2oQZ8gxe5gQcdpwEnHd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1248 + }, + null, + { + "fileToken": "BYEbbmO5Do6MsxxruuBcr9acnRg", + "height": 1481, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/BYEbbmO5Do6MsxxruuBcr9acnRg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-678f1dc1a6a881919681d12009646189-xie-zuo/project", + "text": "文章:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-690e975cd34481918630f00c94d28f0d-soulqie-pian/project", + "text": "生成切片:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + "7A3Cy9": [ + [ + "2月", + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + "统计", + null, + null, + null + ], + [ + "一、效果数据", + null, + "89场", + "90场", + "91场", + "92场", + "93场", + "94场", + null, + "95场", + "96场", + "97场", + "98场", + "99场", + "100场", + null, + "101场", + "102场", + "103场", + "104场", + "105场", + "106场", + null, + 107, + 108, + 109, + 110, + 111, + 112, + null, + null, + null, + null + ], + [ + "主题", + null, + "分享你最赚钱一月Ai", + "Ai创业赚钱私域", + "他们 AI 在开会,然后禁止人类加入。我们这个他现在可以用干嘛? AI 开会还你可以控制。是你的 AI 在里面开会,去引导一堆 AI 来帮你干活,你不能直接摊啊。对对对哦。你可以控制。要你的 AI 在也跟人一样,也要在你的AI,它在群里面,它的级别是比较高的,要能够受到他们的认可,他们才去听他的吧。", + " 19 年来的厦门,但是我厦门之前全部都在一个比较。就是自由的状态,接触的客人都愿意跟我聊着聊着自己觉得能做,然后就开始在厦门做,结果疫情了。", + "因为我也是刚刚接触到这个概念,因为我的专业是财务,那么股票或者是基金对我来说是一个很好的一个练习的工具,就是就练习我的专业,那么我现在是刚刚有这个打算,就是做这个事,然后就是想用 AI 为我做一个辅助。", + "更多的是一些心态,或者说一些工作经验之类的。我不太想输出开发直接相关的干货,因为我们现在的那个技术变更太快了,尤其是 AI 时代,技术变更太快。快了,我现在写的东西可能两年后就完全不适用了。", + null, + "AI 一直都是很多人过来,但是很多人他拿不到,从 AI 上面他挣不到钱,", + "对,可能今年的方向我可能说偏投机一点。你像这个跨境,还有一些这个其他的 AI 方面的嘛。", + "分享最赚钱一月Ai", + "分享最赚钱一月Ai", + "产品好才是核心,产品加内容好才是核心,分润不重要", + "分享最赚钱一月Ai", + null, + "那包括我们公司的一些那个整个的那个 AI 的那个搭建,还有我们 AI 的公,那个公司里面 AI 的思考型。", + "第一个红包发给谁?三个贵人", + "号商几毛卖十几 日销两万", + "AI创业最赚钱一月分享", + "创业社群AI培训6980 电竞私域", + "退伍军人低空经济 贴息8800", + null, + "职场情绪价值 核心团队管理", + "分享最赚钱一月Ai", + "ai对话优化落地,派对干货", + "职场", + "未录到声音", + "AI创业私域职场", + "IFERROR(AVERAGEIF(B3:AC3, \"<>0\", B3:AC3),\"\")", + null, + null, + null + ], + [ + "时长", + null, + 163, + 163, + 91, + 118, + 118, + 117, + null, + 135, + 154, + 126, + 36, + 116, + 54, + null, + 173, + 46, + 155, + 140, + 138, + 135, + null, + 137, + 163, + 139, + 148, + 88, + 133, + "SUM(B4:AC4)", + null, + null, + null + ], + [ + "Soul推流人数", + null, + 34290, + 42360, + 16960, + 30822, + 28718, + 32989, + null, + 25809, + 39743, + 19206, + 6881, + 16976, + 12654, + null, + 37882, + 7950, + 46749, + 36221, + 37600, + 33312, + null, + 33820, + 39032, + 27912, + 29985, + 29985, + 29985, + "SUM(B5:AC5)", + null, + null, + null + ], + [ + "进房人数", + null, + 430, + 445, + 200, + 306, + 361, + 364, + null, + 354, + 470, + 298, + 102, + 208, + 155, + null, + 422, + 94, + 545, + 367, + 403, + 395, + null, + 398, + 546, + 420, + 416, + 155, + 363, + "SUM(B6:AC6)", + null, + null, + null + ], + [ + "人均时长", + null, + 9, + 8, + 9, + 10, + 10, + 10, + null, + 8, + 9, + 11, + 7, + 0, + 6, + null, + 9, + 9, + 7, + 7, + 10, + 7, + null, + 10, + 0, + 8, + 10, + 10, + 7, + "AVERAGEA((B7:AC7))", + null, + null, + null + ], + [ + "互动数量", + null, + 110, + 139, + 51, + 194, + "", + null, + null, + 110, + 267, + 265, + 55, + 0, + 79, + null, + 55, + null, + 34, + 49, + 170, + 88, + null, + 85, + 0, + 97, + 139, + 28, + 52, + "SUM(B8:AC8)", + null, + null, + null + ], + [ + "礼物", + null, + 13, + 1, + 1, + 8, + "", + 8, + null, + 0, + 2, + 3, + 0, + 4, + 1, + null, + 2, + null, + 1, + 0, + 2, + 3, + null, + 2, + 1, + 0, + 6, + 0, + 0, + "SUM(B9:AC9)", + null, + null, + null + ], + [ + "灵魂力", + null, + 66, + 29, + 29, + 340, + "", + 5324, + null, + 0, + 2666, + 24, + 0, + 166, + 8, + null, + 16, + null, + 8, + 0, + 24, + 24, + null, + 16, + 8, + 0, + 31, + 0, + 0, + "SUM(B10:AC10)", + null, + null, + null + ], + [ + "增加关注", + null, + 20, + 19, + 20, + 24, + 9, + 21, + null, + 21, + 33, + 17, + 10, + 12, + 3, + null, + 15, + 2, + 13, + 11, + 31, + 9, + null, + 36, + 30, + 21, + 22, + 9, + 23, + "SUM(B11:AC11)", + null, + null, + null + ], + [ + "最高在线", + null, + 50, + 54, + 48, + 47, + 56, + 54, + null, + 48, + 59, + 49, + 32, + 39, + 37, + null, + 42, + 14, + 47, + 38, + 54, + 42, + null, + 60, + 64, + 46, + 61, + 37, + 0, + "AVERAGEA(B12:AC12)", + null, + null, + null + ], + [ + "推流进房人数", + "IFERROR(B5/B6,\"\")", + 79.7, + 95.2, + "IFERROR(E5/E6,\"\")", + "IFERROR(F5/F6,\"\")", + "IFERROR(G5/G6,\"\")", + "IFERROR(H5/H6,\"\")", + "IFERROR(I5/I6,\"\")", + "IFERROR(J5/J6,\"\")", + "IFERROR(K5/K6,\"\")", + 64.5, + 67.5, + "IFERROR(N5/N6,\"\")", + 81.6, + "IFERROR(P5/P6,\"\")", + "IFERROR(Q5/Q6,\"\")", + "IFERROR(R5/R6,\"\")", + "IFERROR(S5/S6,\"\")", + "IFERROR(T5/T6,\"\")", + "IFERROR(U5/U6,\"\")", + "IFERROR(V5/V6,\"\")", + "IFERROR(W5/W6,\"\")", + "IFERROR(X5/X6,\"\")", + 71.5, + 66.5, + 72.1, + 0, + 0, + "IFERROR(AVERAGEIF(B13:AC13, \"<>0\", B13:AC13),\"\")", + null, + null, + null + ], + [ + "1分钟进多少人", + "IFERROR(B6/B4,\"\")", + 2.6, + 2.7, + "IFERROR(E6/E4,\"\")", + "IFERROR(F6/F4,\"\")", + "IFERROR(G6/G4,\"\")", + "IFERROR(H6/H4,\"\")", + "IFERROR(I6/I4,\"\")", + "IFERROR(J6/J4,\"\")", + "IFERROR(K6/K4,\"\")", + 2.4, + 2.8, + "IFERROR(N6/N4,\"\")", + 2.9, + "IFERROR(P6/P4,\"\")", + "IFERROR(Q6/Q4,\"\")", + "IFERROR(R6/R4,\"\")", + "IFERROR(S6/S4,\"\")", + "IFERROR(T6/T4,\"\")", + "IFERROR(U6/U4,\"\")", + "IFERROR(V6/V4,\"\")", + "IFERROR(W6/W4,\"\")", + "IFERROR(X6/X4,\"\")", + 3.4, + 3, + 2.8, + 1.8, + 2.7, + "IFERROR(AVERAGEIF(B14:AC14, \"<>0\", B14:AC14),\"\")", + null, + null, + null + ], + [ + "小程序访问", + "IFERROR(B11/B6,\"\")", + "IFERROR(C11/C6,\"\")", + 0, + "IFERROR(E11/E6,\"\")", + "IFERROR(F11/F6,\"\")", + "IFERROR(G11/G6,\"\")", + "IFERROR(H11/H6,\"\")", + "IFERROR(I11/I6,\"\")", + "IFERROR(J11/J6,\"\")", + "IFERROR(K11/K6,\"\")", + 0, + 0, + "IFERROR(N11/N6,\"\")", + 0, + "IFERROR(P11/P6,\"\")", + "IFERROR(Q11/Q6,\"\")", + "IFERROR(R11/R6,\"\")", + "IFERROR(S11/S6,\"\")", + 0, + "45", + "52", + "IFERROR(W11/W6,\"\")", + "55", + 0, + 0, + 0, + 0, + "IFERROR(AC11/AC6,\"\")", + "IFERROR(AVERAGEIF(B15:AC15, \"<>0\", B15:AC15),\"\")", + null, + null, + null + ], + [ + "加微率", + "IFERROR(B19/B6,\"\")", + "0%", + "0%", + "IFERROR(E19/E6,\"\")", + "IFERROR(F19/F6,\"\")", + "IFERROR(G19/G6,\"\")", + "IFERROR(H19/H6,\"\")", + "IFERROR(I19/I6,\"\")", + "IFERROR(J19/J6,\"\")", + "IFERROR(K19/K6,\"\")", + "0%", + "0%", + "IFERROR(N19/N6,\"\")", + "0%", + "IFERROR(P19/P6,\"\")", + "IFERROR(Q19/Q6,\"\")", + "IFERROR(R19/R6,\"\")", + "IFERROR(S19/S6,\"\")", + "IFERROR(T19/T6,\"\")", + "IFERROR(U19/U6,\"\")", + "IFERROR(V19/V6,\"\")", + "IFERROR(W19/W6,\"\")", + "IFERROR(X19/X6,\"\")", + "0%", + "0%", + "0%", + "0%", + "0%", + "IFERROR(AVERAGEIF(B16:AC16, \"<>0\", B16:AC16),\"\")", + null, + null, + null + ], + [ + "二、结果数据", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B17:AC17, \"<>0\", B17:AC17),\"\")", + null, + null, + null + ], + [ + "入群数量", + null, + null, + null, + null, + null, + null, + 1, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B18:AC18)", + null, + null, + null + ], + [ + "微信进粉人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B19:AC19)", + null, + null, + null + ], + [ + "线下带人", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 1, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "切片分发", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "曝光量", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B22:AC22)", + null, + null, + null + ], + [ + "发布人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "三、成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B24:AC24, \"<>0\", B24:AC24),\"\")", + null, + null, + null + ], + [ + "运营成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B25:AC25, \"<>0\", B25:AC25),\"\")", + null, + null, + null + ], + [ + "支付费用", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B26:AC26, \"<>0\", B26:AC26),\"\")", + null, + null, + null + ], + [ + "单粉产值", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "【今日总结】\n1、自我剖析\n2、总结规律\n3、问题处理\n4、明日优化\t", + null, + { + "fileToken": "KVA1boxhFomVhAxRoDVcL1uyn7D", + "height": 6791, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KVA1boxhFomVhAxRoDVcL1uyn7D/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1458 + }, + { + "fileToken": "GcIObMGycoDvwnxDmkDcHkYpnic", + "height": 8487, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/GcIObMGycoDvwnxDmkDcHkYpnic/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1278 + }, + null, + null, + null, + null, + null, + { + "fileToken": "LpBLbKmrzoAqSnxEms6cyFHQn6g", + "height": 4852, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/LpBLbKmrzoAqSnxEms6cyFHQn6g/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1726 + }, + { + "fileToken": "XPWpb9rSCo2Ai9xK4YVc2hH3nCr", + "height": 2856, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/XPWpb9rSCo2Ai9xK4YVc2hH3nCr/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1374 + }, + { + "fileToken": "Km3SbMm9doBriSxHZ02cVemtnec", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Km3SbMm9doBriSxHZ02cVemtnec/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 363 + }, + null, + { + "fileToken": "TbpfbkrfYocqrVx0bPjcHMZcnlc", + "height": 10000, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/TbpfbkrfYocqrVx0bPjcHMZcnlc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1554 + }, + { + "fileToken": "QdjObqk5KoMIVnxasMWc4hw8nVh", + "height": 6054, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/QdjObqk5KoMIVnxasMWc4hw8nVh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1737 + }, + null, + { + "fileToken": "FplpbcQCpohb5WxWgwCcxgh1n0b", + "height": 8525, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/FplpbcQCpohb5WxWgwCcxgh1n0b/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2352 + }, + { + "fileToken": "CMVzblC4Mo8UetxTD06c8lY0nyc", + "height": 5399, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/CMVzblC4Mo8UetxTD06c8lY0nyc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2400 + }, + { + "fileToken": "TJTwbAIRgo3YAKxPZ7OcHZeKnyh", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/TJTwbAIRgo3YAKxPZ7OcHZeKnyh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 396 + }, + { + "fileToken": "OlWSbKVVbomFQQx8je8cBdRDnmh", + "height": 1413, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/OlWSbKVVbomFQQx8je8cBdRDnmh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + { + "fileToken": "KSqxbC1BJo9H4qxQfpKcTY6onYg", + "height": 5841, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KSqxbC1BJo9H4qxQfpKcTY6onYg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1538 + }, + { + "fileToken": "HV0nbIR1mo8otuxPNpNcaxb3nfh", + "height": 10371, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/HV0nbIR1mo8otuxPNpNcaxb3nfh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1448 + }, + null, + { + "fileToken": "FVxubUwGHoiXJpxmkkGcCIRxnTb", + "height": 5602, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/FVxubUwGHoiXJpxmkkGcCIRxnTb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1158 + }, + { + "fileToken": "HuTbbIl9GoJfY9x0y0HcVatonue", + "height": 10778, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/HuTbbIl9GoJfY9x0y0HcVatonue/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1454 + }, + { + "fileToken": "Ul0bbxA8BoYcAsxmnfycDyjmn2e", + "height": 5616, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Ul0bbxA8BoYcAsxmnfycDyjmn2e/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1132 + }, + { + "fileToken": "BX9XbzYbroHTecxpe8gcGZqCnrd", + "height": 9540, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/BX9XbzYbroHTecxpe8gcGZqCnrd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1222 + }, + null, + { + "fileToken": "QMSRbLKnqoC2wHxWYxhcocdlnee", + "height": 8058, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/QMSRbLKnqoC2wHxWYxhcocdlnee/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1636 + }, + null, + null, + null, + null + ], + [ + "派对录屏", + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnmr78miaq243234p8c5nm", + "text": "https://cunkebao.feishu.cn/minutes/obcnmr78miaq243234p8c5nm", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnng3c7z52839e3gt5e945", + "text": "https://cunkebao.feishu.cn/minutes/obcnng3c7z52839e3gt5e945", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnn63j1a1833c8p3587x47", + "text": "https://cunkebao.feishu.cn/minutes/obcnn63j1a1833c8p3587x47", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnou5s4r4ydj2ok8n4w61w", + "text": "https://cunkebao.feishu.cn/minutes/obcnou5s4r4ydj2ok8n4w61w", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnpjlsm1l3yl1989rn36ai", + "text": "https://cunkebao.feishu.cn/minutes/obcnpjlsm1l3yl1989rn36ai", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnp8hbwqop55772892p3y1?from=auth_notice", + "text": "https://cunkebao.feishu.cn/minutes/obcnp8hbwqop55772892p3y1?from=auth_notice", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnrkc8bagf1gx2bo4fim9j", + "text": "https://cunkebao.feishu.cn/minutes/obcnrkc8bagf1gx2bo4fim9j", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnr93ne88p8z19777cz8u6", + "text": "https://cunkebao.feishu.cn/minutes/obcnr93ne88p8z19777cz8u6", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnsyr6p38y4223q5548429", + "text": "https://cunkebao.feishu.cn/minutes/obcnsyr6p38y4223q5548429", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnucnci1m2z422987lcb75", + "text": "https://cunkebao.feishu.cn/minutes/obcnucnci1m2z422987lcb75", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnu1rfr452595c6l51a7e1", + "text": "https://cunkebao.feishu.cn/minutes/obcnu1rfr452595c6l51a7e1", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnwd5r563dopj1l3lp5pf1", + "text": "https://cunkebao.feishu.cn/minutes/obcnwd5r563dopj1l3lp5pf1", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnxrkz6k459k669544228c", + "text": "https://cunkebao.feishu.cn/minutes/obcnxrkz6k459k669544228c", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnyg5nj2l8q281v32de6qz", + "text": "https://cunkebao.feishu.cn/minutes/obcnyg5nj2l8q281v32de6qz", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcny5sux74w123q3pmt8xg7", + "text": "https://cunkebao.feishu.cn/minutes/obcny5sux74w123q3pmt8xg7", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnzs51k1j754643vx138sx", + "text": "https://cunkebao.feishu.cn/minutes/obcnzs51k1j754643vx138sx", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn17h795641c39v436mq4g", + "text": "https://cunkebao.feishu.cn/minutes/obcn17h795641c39v436mq4g", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn2u411ezq8fc8ot6icmz8", + "text": "https://cunkebao.feishu.cn/minutes/obcn2u411ezq8fc8ot6icmz8", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn3j39l13bb55yw813i4go", + "text": "https://cunkebao.feishu.cn/minutes/obcn3j39l13bb55yw813i4go", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn39v4qf533r7fr55un7qv", + "text": "https://cunkebao.feishu.cn/minutes/obcn39v4qf533r7fr55un7qv", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn4wsl4112qeg523c7b2bn", + "text": "https://cunkebao.feishu.cn/minutes/obcn4wsl4112qeg523c7b2bn", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn5muad6wexv91g65v1883", + "text": "https://cunkebao.feishu.cn/minutes/obcn5muad6wexv91g65v1883", + "type": "url" + } + ], + null, + null, + null, + null + ], + [ + null, + 135, + 33312, + 395, + 7, + 88, + 3, + 24, + 9, + 42, + "1.01%", + "2.62", + "0%", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "团队会议", + null, + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnmrz1252s76ynth6551e2", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnmrz1252s76ynth6551e2", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnngy6728133981755114a", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnngy6728133981755114a", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnn59a7tqn777w6y74ocku", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnn59a7tqn777w6y74ocku", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnottyb6u148m6cg743u9r", + "text": "https://cunkebao.feishu.cn/minutes/obcnottyb6u148m6cg743u9r", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnpif5ftug77lyenv9xgr2?from=from_copylink", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnpif5ftug77lyenv9xgr2?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnp7x54h53t89j3a11o331", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnp7x54h53t89j3a11o331", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://mcnmksxprtdd.feishu.cn/minutes/obcnrk6y4lm48uhxenu573h3", + "text": "https://mcnmksxprtdd.feishu.cn/minutes/obcnrk6y4lm48uhxenu573h3", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://mcnmksxprtdd.feishu.cn/minutes/obcnsxjh9lxyt79891h3ic2p?from=from_copylink", + "text": "https://mcnmksxprtdd.feishu.cn/minutes/obcnsxjh9lxyt79891h3ic2p?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcntmi1f9ipwqn2u4kp4moq?from=from_copylink", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcntmi1f9ipwqn2u4kp4moq?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnub73dn5t8dqst5854f1r", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnub73dn5t8dqst5854f1r", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnuzxyts9m5bzv8xfu181k?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnuzxyts9m5bzv8xfu181k?from=from_copylink", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnwdk3d2k91bn88tyueodi", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnwdk3d2k91bn88tyueodi", + "type": "url" + } + ], + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcny4q2s41x4gnj29m862f4?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcny4q2s41x4gnj29m862f4?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnzs6l8uf6l3oz9kp8xc28?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnzs6l8uf6l3oz9kp8xc28?from=from_copylink", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn163xk6413av763164nt9?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn163xk6413av763164nt9?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn2u8s4mfipe57fferil31?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn2u8s4mfipe57fferil31?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn3j5r2ct68uav5th8j2x7?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn3j5r2ct68uav5th8j2x7?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn387383p6uu168863mn35?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn387383p6uu168863mn35?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn4wjyzx2o81g6xdig4n1f?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn4wjyzx2o81g6xdig4n1f?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn5l7685iy38yf61473t59?from=from_copylink", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn5l7685iy38yf61473t59?from=from_copylink", + "type": "url" + } + ], + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "内部会议智要", + null, + null, + null, + { + "fileToken": "KYWgb0FrVo6QKaxWgOlcnAUOn8b", + "height": 1694, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KYWgb0FrVo6QKaxWgOlcnAUOn8b/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + null, + { + "fileToken": "TT91bLGjio6LxrxNiEUcXG5qnAb", + "height": 2481, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/TT91bLGjio6LxrxNiEUcXG5qnAb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1640 + }, + null, + null, + { + "fileToken": "X6rkbp9pzoSnV5xFkq0cKiFznKd", + "height": 9248, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/X6rkbp9pzoSnV5xFkq0cKiFznKd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2176 + }, + null, + { + "fileToken": "EgWAb7MH6opx8kxdmsocbRb1nZd", + "height": 10022, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/EgWAb7MH6opx8kxdmsocbRb1nZd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1726 + }, + { + "fileToken": "A1b0bDPxnogswyxYYG0cYMLWnSf", + "height": 10022, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/A1b0bDPxnogswyxYYG0cYMLWnSf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1726 + }, + { + "fileToken": "NI51bEJwoocx3ixumZDcBM9pn3e", + "height": 10216, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/NI51bEJwoocx3ixumZDcBM9pn3e/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2400 + }, + { + "fileToken": "MgbebaWDdoDzHAxVUWmcDAkfn1c", + "height": 9756, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/MgbebaWDdoDzHAxVUWmcDAkfn1c/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1616 + }, + null, + { + "fileToken": "IZ2EbGP36ovEM9xnGDmcAFHznle", + "height": 1545, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/IZ2EbGP36ovEM9xnGDmcAFHznle/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + null, + null, + null, + { + "fileToken": "AcVxb9MhmoQdLNxdXUHcsOfLnlf", + "height": 8225, + "link": "internal-api-space.feishu.cn/space/api/box/stream/download/v2/cover/AcVxb9MhmoQdLNxdXUHcsOfLnlf?height=1280&width=1280&policy=equal&mount_point=sheet_image&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf", + "text": "", + "type": "embed-image", + "width": 1544 + }, + { + "fileToken": "AG4fbF6cAo0Tq8xtXPpcY7rPn1c", + "height": 7523, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/AG4fbF6cAo0Tq8xtXPpcY7rPn1c/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1332 + }, + null, + { + "fileToken": "BmjabP4UDoS9AJxVUYScfFGmnkc", + "height": 7803, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/BmjabP4UDoS9AJxVUYScfFGmnkc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1452 + }, + { + "fileToken": "LV9Iby9Nmoj0AWxkN5BceF4ZnUb", + "height": 1996, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/LV9Iby9Nmoj0AWxkN5BceF4ZnUb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + { + "fileToken": "Gcjrbu7xloG1LwxWxFycvkwHnbh", + "height": 5715, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Gcjrbu7xloG1LwxWxFycvkwHnbh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1022 + }, + { + "fileToken": "MBr2baaFNofhFhxHUs5cMOFEnIg", + "height": 2344, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/MBr2baaFNofhFhxHUs5cMOFEnIg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1214 + }, + { + "fileToken": "Fo7cbFZDnoT1n5xAOVGcsOM8nFb", + "height": 2480, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Fo7cbFZDnoT1n5xAOVGcsOM8nFb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1156 + }, + { + "fileToken": "ZjrPbQOkPo8fn6xtqtAcO17YnMg", + "height": 2978, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/ZjrPbQOkPo8fn6xtqtAcO17YnMg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1702 + }, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-678f1dc1a6a881919681d12009646189-xie-zuo/project", + "text": "文章:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-690e975cd34481918630f00c94d28f0d-soulqie-pian/project", + "text": "生成切片:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + "0uU6Z1": [ + [ + "1月", + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + "统计" + ], + [ + "一、效果数据", + "62场", + "63场", + "64场", + null, + "65场", + "66场", + "67场", + "68场", + "69场", + "70场", + null, + "71场", + "72场", + "73场", + "74场", + "75场", + "76场", + null, + "77场", + "78场", + "79场", + "80场", + "81场", + "82场", + null, + "83场", + "84场", + "85场", + "86场", + "87场", + "88场", + null + ], + [ + "主题", + "90吨开门红,黄金白银翻倍,2026目标规划", + "AI电商痛点,20万开店秘籍,校园引流闭环", + "银元换房,小孩商业计划书,网吧新机会,私董会模式", + null, + "蚂蚁阿福解密,医疗数据变现,AI淘客新玩法,数据基建补贴", + "送礼三连,双表哥起飞,房产陷阱,AI私域", + "医美AI对接,AI标注副业,私域封号破解,电竞赛事躺赚", + "搞钱主线,政策红利,保镖生意,退伍军人", + "石头会说话,实体店真好做,统计学赚钱", + "灰产省钱术,8岁投资人,美业死局,AI淘客革命,05后创业者", + null, + "1元门槛,闲鱼编故事,AR皮影戏,05后太猛", + "MBTI搭配创业,用户资产评估,短视频创业经历,AI短剧付费模式", + "死亡打卡APP,人与AI关系,酱酒12987工艺,小红书素人引流", + "销冠密码,AI淘客新模式,游戏典当,期货暴赚", + "期货心态论,招商策划秘籍,AI手机获客,闲鱼躺赚体系", + "大数据无隐私,股市韭菜警示,蓝世立上市公式,地摊5.0详解", + null, + "读书秘籍,资源对接,执行力论,电竞布局", + "展会拿下客户的真诚之道,AI时代人与人差距1万倍,手机采购与AI数字员工需求,AI数字员工私域激活系统", + null, + "AI写小说日赚百元,1人运营7平台矩阵,数字资产合规变现,品牌出海获客方案", + "餐饮收银截流美团,电竞私域19年经验,众筹测项目快速学习法,孵化器商业模式设计", + "电影院改造30-40万投入,李亚鹏融资阶段论,分润模式崩溃警示,打工思维vs合伙思维,AI工具实战验证", + null, + "程序员超级个体创业,电动车民宿新模式,融资阶段论,创业成本对标,AI时代人力转变", + "全球346万亿债务与印钞逻辑,电动车民宿合作模式深度拆解,普通人AI机会与资本门槛,私域流量后端变现体系", + null, + "会议纪要ToB服务变现,60播放量拿下8店老板,股票强中选强傻瓜操作,程序员薪资5000到7万分层", + "房价要涨,早读房推荐,销售人不销品", + null, + "IFERROR(AVERAGEIF(B3:AF3, \"<>0\", B3:AF3),\"\")" + ], + [ + "时长", + 129, + 119, + 163, + null, + 133, + 159, + 130, + 156, + 217, + 140, + null, + 114, + 152, + 147, + 126, + 150, + 150, + null, + 126, + 127, + 139, + 66, + 143, + 149, + null, + 134, + 145, + 157, + 129, + 128, + 31, + "SUM(B4:AF4)" + ], + [ + "Soul推流人数", + 35470, + 20056, + 49182, + null, + 37040, + 55958, + 39870, + 46182, + 56652, + 35318, + null, + 18883, + 19331, + 23518, + 27820, + 37622, + 31764, + null, + 20941, + 25120, + 22892, + 12861, + 21153, + 31980, + null, + 26146, + 23389, + 20685, + 15266, + 11113, + 5921, + "SUM(B5:AF5)" + ], + [ + "进房人数", + 417, + 247, + 451, + null, + 451, + 548, + 447, + 493, + 556, + 382, + null, + 294, + 308, + 400, + 357, + 476, + 440, + null, + 296, + 273, + 332, + 185, + 329, + 375, + null, + 313, + 325, + 382, + 291, + 226, + 96, + "SUM(B6:AF6)" + ], + [ + "人均时长", + 9, + 11, + 10, + null, + 12, + 11, + 9, + null, + 10, + 9, + null, + 10, + 10, + 10, + 10, + 11, + 12, + null, + 11, + 11, + 11, + 11, + 9, + 10, + null, + 12, + 12, + 12, + 9, + 11, + 6, + "AVERAGEA((B7:AF7))" + ], + [ + "互动数量", + 118, + 97, + 159, + null, + 232, + 124, + 126, + null, + 471, + 279, + null, + 190, + 131, + 262, + 254, + 241, + 231, + null, + 268, + 105, + 241, + 167, + 192, + 224, + null, + 304, + 167, + 96, + 84, + 63, + 15, + "SUM(B8:AF8)" + ], + [ + "礼物", + null, + 9, + 3, + null, + null, + 1, + 5, + 17, + 21, + 7, + null, + null, + 3, + 2, + null, + null, + 4, + null, + 26, + 11, + 11, + 7, + 6, + 12, + null, + 9, + 5, + 6, + 6, + 5, + 1, + "SUM(B9:AF9)" + ], + [ + "灵魂力", + null, + 142, + 94, + null, + null, + 3, + 11, + 13981, + 6868, + 25, + null, + null, + 24, + 16, + null, + null, + 53, + null, + 357, + 47, + 500, + 90, + 55, + 180, + null, + 29, + 31, + 27, + 27, + 76, + 8, + "SUM(B10:AF10)" + ], + [ + "增加关注", + 26, + 14, + 25, + null, + 31, + 28, + 16, + 19, + 15, + 11, + null, + 19, + 18, + 18, + 35, + 39, + 11, + null, + 18, + 4, + 19, + 13, + 10, + 23, + null, + 30, + 11, + 11, + 16, + 5, + 11, + "SUM(B11:AF11)" + ], + [ + "最高在线", + 60, + 53, + 51, + null, + 68, + 63, + 54, + 65, + 42, + 47, + null, + null, + 30, + 51, + 50, + 62, + 75, + null, + 45, + 48, + 45, + 55, + 45, + 59, + null, + 54, + 52, + 40, + 41, + 36, + 33, + "AVERAGEA(B12:AF12)" + ], + [ + "推流多少次进房一个人", + "IFERROR(B5/B6,\"\")", + "IFERROR(C5/C6,\"\")", + "IFERROR(D5/D6,\"\")", + "IFERROR(E5/E6,\"\")", + "IFERROR(F5/F6,\"\")", + "IFERROR(G5/G6,\"\")", + "IFERROR(H5/H6,\"\")", + "IFERROR(I5/I6,\"\")", + "IFERROR(J5/J6,\"\")", + "IFERROR(K5/K6,\"\")", + "IFERROR(L5/L6,\"\")", + "IFERROR(M5/M6,\"\")", + "IFERROR(N5/N6,\"\")", + "IFERROR(O5/O6,\"\")", + "IFERROR(P5/P6,\"\")", + "IFERROR(Q5/Q6,\"\")", + "IFERROR(R5/R6,\"\")", + "IFERROR(S5/S6,\"\")", + "IFERROR(T5/T6,\"\")", + "IFERROR(U5/U6,\"\")", + "IFERROR(V5/V6,\"\")", + "IFERROR(W5/W6,\"\")", + "IFERROR(X5/X6,\"\")", + "IFERROR(Y5/Y6,\"\")", + "IFERROR(Z5/Z6,\"\")", + "IFERROR(AA5/AA6,\"\")", + "IFERROR(AB5/AB6,\"\")", + "IFERROR(AC5/AC6,\"\")", + "IFERROR(AD5/AD6,\"\")", + "IFERROR(AE5/AE6,\"\")", + "IFERROR(AF5/AF6,\"\")", + "IFERROR(AVERAGEIF(B13:AF13, \"<>0\", B13:AF13),\"\")" + ], + [ + "1分钟进多少人", + "IFERROR(B6/B4,\"\")", + "IFERROR(C6/C4,\"\")", + "IFERROR(D6/D4,\"\")", + "IFERROR(E6/E4,\"\")", + "IFERROR(F6/F4,\"\")", + "IFERROR(G6/G4,\"\")", + "IFERROR(H6/H4,\"\")", + "IFERROR(I6/I4,\"\")", + "IFERROR(J6/J4,\"\")", + "IFERROR(K6/K4,\"\")", + "IFERROR(L6/L4,\"\")", + "IFERROR(M6/M4,\"\")", + "IFERROR(N6/N4,\"\")", + "IFERROR(O6/O4,\"\")", + "IFERROR(P6/P4,\"\")", + "IFERROR(Q6/Q4,\"\")", + "IFERROR(R6/R4,\"\")", + "IFERROR(S6/S4,\"\")", + "IFERROR(T6/T4,\"\")", + "IFERROR(U6/U4,\"\")", + "IFERROR(V6/V4,\"\")", + "IFERROR(W6/W4,\"\")", + "IFERROR(X6/X4,\"\")", + "IFERROR(Y6/Y4,\"\")", + "IFERROR(Z6/Z4,\"\")", + "IFERROR(AA6/AA4,\"\")", + "IFERROR(AB6/AB4,\"\")", + "IFERROR(AC6/AC4,\"\")", + "IFERROR(AD6/AD4,\"\")", + "IFERROR(AE6/AE4,\"\")", + "IFERROR(AF6/AF4,\"\")", + "IFERROR(AVERAGEIF(B14:AF14, \"<>0\", B14:AF14),\"\")" + ], + [ + "关注/进房人数", + "IFERROR(B11/B6,\"\")", + "IFERROR(C11/C6,\"\")", + "IFERROR(D11/D6,\"\")", + "IFERROR(E11/E6,\"\")", + "IFERROR(F11/F6,\"\")", + "IFERROR(G11/G6,\"\")", + "IFERROR(H11/H6,\"\")", + "IFERROR(I11/I6,\"\")", + "IFERROR(J11/J6,\"\")", + "IFERROR(K11/K6,\"\")", + "IFERROR(L11/L6,\"\")", + "IFERROR(M11/M6,\"\")", + "IFERROR(N11/N6,\"\")", + "IFERROR(O11/O6,\"\")", + "IFERROR(P11/P6,\"\")", + "IFERROR(Q11/Q6,\"\")", + "IFERROR(R11/R6,\"\")", + "IFERROR(S11/S6,\"\")", + "IFERROR(T11/T6,\"\")", + "IFERROR(U11/U6,\"\")", + "IFERROR(V11/V6,\"\")", + "IFERROR(W11/W6,\"\")", + "IFERROR(X11/X6,\"\")", + "IFERROR(Y11/Y6,\"\")", + "IFERROR(Z11/Z6,\"\")", + "IFERROR(AA11/AA6,\"\")", + "IFERROR(AB11/AB6,\"\")", + "IFERROR(AC11/AC6,\"\")", + "IFERROR(AD11/AD6,\"\")", + "IFERROR(AE11/AE6,\"\")", + "IFERROR(AF11/AF6,\"\")", + "IFERROR(AVERAGEIF(B15:AF15, \"<>0\", B15:AF15),\"\")" + ], + [ + "加微率", + "IFERROR(B19/B6,\"\")", + "IFERROR(C19/C6,\"\")", + "IFERROR(D19/D6,\"\")", + "IFERROR(E19/E6,\"\")", + "IFERROR(F19/F6,\"\")", + "IFERROR(G19/G6,\"\")", + "IFERROR(H19/H6,\"\")", + "IFERROR(I19/I6,\"\")", + "IFERROR(J19/J6,\"\")", + "IFERROR(K19/K6,\"\")", + "IFERROR(L19/L6,\"\")", + "IFERROR(M19/M6,\"\")", + "IFERROR(N19/N6,\"\")", + "IFERROR(O19/O6,\"\")", + "IFERROR(P19/P6,\"\")", + "IFERROR(Q19/Q6,\"\")", + "IFERROR(R19/R6,\"\")", + "IFERROR(S19/S6,\"\")", + "IFERROR(T19/T6,\"\")", + "IFERROR(U19/U6,\"\")", + "IFERROR(V19/V6,\"\")", + "IFERROR(W19/W6,\"\")", + "IFERROR(X19/X6,\"\")", + "IFERROR(Y19/Y6,\"\")", + "IFERROR(Z19/Z6,\"\")", + "IFERROR(AA19/AA6,\"\")", + "IFERROR(AB19/AB6,\"\")", + "IFERROR(AC19/AC6,\"\")", + "IFERROR(AD19/AD6,\"\")", + "IFERROR(AE19/AE6,\"\")", + "IFERROR(AF19/AF6,\"\")", + "IFERROR(AVERAGEIF(B16:AF16, \"<>0\", B16:AF16),\"\")" + ], + [ + "二、结果数据", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B17:AF17, \"<>0\", B17:AF17),\"\")" + ], + [ + "入群数量", + 1, + null, + 3, + null, + null, + 1, + null, + 1, + 2, + 7, + null, + null, + 3, + null, + 4, + 1, + 1, + null, + 3, + 2, + 3, + 2, + 2, + 2, + null, + null, + 1, + null, + null, + null, + null, + "SUM(B18:AF18)" + ], + [ + "微信进粉人数", + 1, + null, + 3, + null, + null, + 1, + null, + 3, + 2, + 7, + null, + null, + 3, + null, + 4, + 2, + 1, + null, + 4, + 2, + 3, + 2, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B19:AF19)" + ], + [ + "线下带人", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "切片分发", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "曝光量", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B22:AF22)" + ], + [ + "发布人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "三、成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B24:AF24, \"<>0\", B24:AF24),\"\")" + ], + [ + "运营成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B25:AF25, \"<>0\", B25:AF25),\"\")" + ], + [ + "支付费用", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B26:AF26, \"<>0\", B26:AF26),\"\")" + ], + [ + "单粉产值", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "【今日总结】\n1、自我剖析\n2、总结规律\n3、问题处理\n4、明日优化\t", + { + "fileToken": "JLdpbuLVNo1LcIxE7WoccJuLnJe", + "height": 5781, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/JLdpbuLVNo1LcIxE7WoccJuLnJe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1276 + }, + { + "fileToken": "BmNMbjJZGo8Uo1xtONscn0Kqnqb", + "height": 5467, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/BmNMbjJZGo8Uo1xtONscn0Kqnqb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1460 + }, + { + "fileToken": "Ml5ebrXWSoStx4xrKv3cfpJNnsh", + "height": 8674, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Ml5ebrXWSoStx4xrKv3cfpJNnsh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1428 + }, + null, + { + "fileToken": "RUVCbXnGtoG9G1x1x5ncU3s7nrf", + "height": 8708, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/RUVCbXnGtoG9G1x1x5ncU3s7nrf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1412 + }, + { + "fileToken": "HOgMbVdUtoJSTexmshIcYtnAniI", + "height": 7387, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/HOgMbVdUtoJSTexmshIcYtnAniI/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1426 + }, + { + "fileToken": "CXGzbpDjSoVEmTx7JRMcJOOXn2d", + "height": 6807, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/CXGzbpDjSoVEmTx7JRMcJOOXn2d/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1562 + }, + { + "fileToken": "UTsfbY6uPoaUiQxQ0SWcEE8Onrc", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/UTsfbY6uPoaUiQxQ0SWcEE8Onrc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 264 + }, + { + "fileToken": "KsIEb9zdKoru3Vxn3LXcZgdfnid", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KsIEb9zdKoru3Vxn3LXcZgdfnid/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 307 + }, + { + "fileToken": "GQ6Lbr4nioIIudx90gecEPGwnub", + "height": 6343, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/GQ6Lbr4nioIIudx90gecEPGwnub/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1282 + }, + null, + { + "fileToken": "LK2hb4Stkozp9txn4MzcoPRHnCb", + "height": 6290, + "link": "https://api3-eeft-drive.feishu.cn/space/api/box/stream/download/v2/cover/LK2hb4Stkozp9txn4MzcoPRHnCb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1440 + }, + { + "fileToken": "Vxy7bdDevofrOoxvkcucKwfvnvQ", + "height": 7177, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Vxy7bdDevofrOoxvkcucKwfvnvQ/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1456 + }, + { + "fileToken": "RImMbHvRjo7z4KxWoUEcOxUKnVc", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/RImMbHvRjo7z4KxWoUEcOxUKnVc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 286 + }, + { + "fileToken": "PtR2bO051otOcyx6v1kcKkvJnYf", + "height": 3527, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/PtR2bO051otOcyx6v1kcKkvJnYf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1244 + }, + { + "fileToken": "FgTRbMmtDoDfk7x0EqEcidClnyh", + "height": 6515, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/FgTRbMmtDoDfk7x0EqEcidClnyh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1306 + }, + { + "fileToken": "QeVEb65kooKS1qxt47Xc8b1dnle", + "height": 5887, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/QeVEb65kooKS1qxt47Xc8b1dnle/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1812 + }, + null, + { + "fileToken": "PSxWbnXJroDC2pxldJscF71Ynwg", + "height": 5872, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/PSxWbnXJroDC2pxldJscF71Ynwg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1236 + }, + { + "fileToken": "JMuUbGwOJoG9Z5xirJlconGNnBe", + "height": 8371, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/JMuUbGwOJoG9Z5xirJlconGNnBe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1270 + }, + null, + { + "fileToken": "ZxAbblelqoAoI0xL6HrcOeZCnEe", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/ZxAbblelqoAoI0xL6HrcOeZCnEe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 342 + }, + { + "fileToken": "Bgrtb6jjJoswlSxoYMRcjgGantg", + "height": 5646, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Bgrtb6jjJoswlSxoYMRcjgGantg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1570 + }, + { + "fileToken": "WRjtbZjgnowUrQxgP1FcWDYynRg", + "height": 9763, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/WRjtbZjgnowUrQxgP1FcWDYynRg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2600 + }, + null, + { + "fileToken": "NiZsbsQ2BodfUuxFakwcD8c2ncf", + "height": 9580, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/NiZsbsQ2BodfUuxFakwcD8c2ncf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2600 + }, + { + "fileToken": "RLIzb2PWtobVWoxSC8jcoTzRnlf", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/RLIzb2PWtobVWoxSC8jcoTzRnlf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 274 + }, + null, + { + "fileToken": "IvbLbeDq1oEP23xuF1pcjNnfnef", + "height": 5408, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/IvbLbeDq1oEP23xuF1pcjNnfnef/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1256 + }, + { + "fileToken": "Pr8ZbqMqBoJciIxv5r1cBuM6nBo", + "height": 4031, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Pr8ZbqMqBoJciIxv5r1cBuM6nBo/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1200 + }, + { + "fileToken": "WA87b1ZOXoUT0px0m68cMzzunNd", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/WA87b1ZOXoUT0px0m68cMzzunNd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 539 + }, + null + ], + [ + "派对录屏", + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnztd6x9z637r5j2m7pm8f", + "text": "https://cunkebao.feishu.cn/minutes/obcnztd6x9z637r5j2m7pm8f", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn1io5675l1rd38z5lau9a", + "text": "https://cunkebao.feishu.cn/minutes/obcn1io5675l1rd38z5lau9a", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn177x99a7ipn6754u6dz9", + "text": "https://cunkebao.feishu.cn/minutes/obcn177x99a7ipn6754u6dz9", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn3l31yvt8sl51xlfy2vxy", + "text": "https://cunkebao.feishu.cn/minutes/obcn3l31yvt8sl51xlfy2vxy", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn39823e19ua49k7fr11pd", + "text": "https://cunkebao.feishu.cn/minutes/obcn39823e19ua49k7fr11pd", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn4xu918uu5z3666tdm5g6", + "text": "https://cunkebao.feishu.cn/minutes/obcn4xu918uu5z3666tdm5g6", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn5mk524dd26484wbb914h", + "text": "https://cunkebao.feishu.cn/minutes/obcn5mk524dd26484wbb914h", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn6b514hj66ua55bnnwl94", + "text": "https://cunkebao.feishu.cn/minutes/obcn6b514hj66ua55bnnwl94", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn6117m26o2upekwo8867o", + "text": "https://cunkebao.feishu.cn/minutes/obcn6117m26o2upekwo8867o", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn8es856yyc823mew749t6", + "text": "https://cunkebao.feishu.cn/minutes/obcn8es856yyc823mew749t6", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn822w61m543t1m5b65558", + "text": "https://cunkebao.feishu.cn/minutes/obcn822w61m543t1m5b65558", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn9q76pr9okz3a5y8k17aj", + "text": "https://cunkebao.feishu.cn/minutes/obcn9q76pr9okz3a5y8k17aj", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnafz2118z9c2175k1n83h", + "text": "https://cunkebao.feishu.cn/minutes/obcnafz2118z9c2175k1n83h", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcna4c714fs82839j9v5w69", + "text": "https://cunkebao.feishu.cn/minutes/obcna4c714fs82839j9v5w69", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnbs58vj59kqn7xka72x65", + "text": "https://cunkebao.feishu.cn/minutes/obcnbs58vj59kqn7xka72x65", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnc6x1nr9l7ae8yn3yr84f", + "text": "https://cunkebao.feishu.cn/minutes/obcnc6x1nr9l7ae8yn3yr84f", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcndus3462qw6ce9pj87qre", + "text": "https://cunkebao.feishu.cn/minutes/obcndus3462qw6ce9pj87qre", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnej1uf1g2388ny535m53f", + "text": "https://cunkebao.feishu.cn/minutes/obcnej1uf1g2388ny535m53f", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcne82vw6ye9h2xmw5g2y56", + "text": "https://cunkebao.feishu.cn/minutes/obcne82vw6ye9h2xmw5g2y56", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnfw4broyz32e11uotl58e", + "text": "https://cunkebao.feishu.cn/minutes/obcnfw4broyz32e11uotl58e", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcngl7u7v2vamqou371htbc", + "text": "https://cunkebao.feishu.cn/minutes/obcngl7u7v2vamqou371htbc", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnhysbz247994p6921861g", + "text": "https://cunkebao.feishu.cn/minutes/obcnhysbz247994p6921861g", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcninstiu2s7756lqdr77co", + "text": "https://cunkebao.feishu.cn/minutes/obcninstiu2s7756lqdr77co", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcninstiu2s7756lqdr77co", + "text": "https://cunkebao.feishu.cn/minutes/obcninstiu2s7756lqdr77co", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnj146v498fe4d7up7e7y5", + "text": "https://cunkebao.feishu.cn/minutes/obcnj146v498fe4d7up7e7y5", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnkqmdr7j5q28xs95z9rr8", + "text": "https://cunkebao.feishu.cn/minutes/obcnkqmdr7j5q28xs95z9rr8", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnlhw3z6cqrq91s16q9p61?from=auth_notice", + "text": "https://cunkebao.feishu.cn/minutes/obcnlhw3z6cqrq91s16q9p61?from=auth_notice", + "type": "url" + } + ], + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "团队会议", + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnztgq6gc2v6d7969shk4u?from=from_copylink", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnztgq6gc2v6d7969shk4u?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn1i16e1fxglqc86i43a72", + "text": "https://cunkebao.feishu.cn/minutes/obcn1i16e1fxglqc86i43a72", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcn17f3f913c9nyju342932", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcn17f3f913c9nyju342932", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://scnr5b9fypdq.feishu.cn/minutes/obcn3khajzm14x93472qwk8e", + "text": "https://scnr5b9fypdq.feishu.cn/minutes/obcn3khajzm14x93472qwk8e", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcn39v5w868yv1chb5f674r", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcn39v5w868yv1chb5f674r", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn4xc7o1ylh1fl579ww5z8", + "text": "https://cunkebao.feishu.cn/minutes/obcn4xc7o1ylh1fl579ww5z8", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://lcn21mzqqqdu.feishu.cn/minutes/obcn5my7svopwlrnnj8e2x51?from=from_copylink", + "text": "https://lcn21mzqqqdu.feishu.cn/minutes/obcn5my7svopwlrnnj8e2x51?from=from_copylink", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://scnr5b9fypdq.feishu.cn/minutes/obcn6b438mmoy2ch8eot1n89", + "text": "https://scnr5b9fypdq.feishu.cn/minutes/obcn6b438mmoy2ch8eot1n89", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn6zte14nl453rya9z4i56?from_source=finish_recording", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn6zte14nl453rya9z4i56?from_source=finish_recording", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcn8d3o3b22m86z618y1a17?from_source=finish_recording", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcn8d3o3b22m86z618y1a17?from_source=finish_recording", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn82umur66e1f92qtcdews", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcn82umur66e1f92qtcdews", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcn9p8yjh4r9dkoyi5h5727?from_source=finish_recording", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcn9p8yjh4r9dkoyi5h5727?from_source=finish_recording", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://scnr5b9fypdq.feishu.cn/minutes/obcnafugk56clzyn695f7x29", + "text": "https://scnr5b9fypdq.feishu.cn/minutes/obcnafugk56clzyn695f7x29", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcna7ps42p6311b114wv8fz", + "text": "https://cunkebao.feishu.cn/minutes/obcna7ps42p6311b114wv8fz", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcnbsh3por45esqsckgepo3?from_source=finish_recording", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcnbsh3por45esqsckgepo3?from_source=finish_recording", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcnc615br1nboz1384yldt5?from_source=finish_recording", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcnc615br1nboz1384yldt5?from_source=finish_recording", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcndu5gu6h3339xumf4388q", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcndu5gu6h3339xumf4388q", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnej44v3b6r77i197u5a9s", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnej44v3b6r77i197u5a9s", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcne7f7629rm4gh7223coek", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcne7f7629rm4gh7223coek", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnfww612bc28k6esza5968", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnfww612bc28k6esza5968", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcnglmfp7817d49sx3b548u?from_source=finish_recording", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcnglmfp7817d49sx3b548u?from_source=finish_recording", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnhx189967nbz33r3ue117", + "text": "https://kcnxrqd5ata7.feishu.cn/minutes/obcnhx189967nbz33r3ue117", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://applink.feishu.cn/client/message/link/open?token=Amj6uWoKmgATaXlWNumAi9g%3D", + "text": "https://applink.feishu.cn/client/message/link/open?token=Amj6uWoKmgATaXlWNumAi9g%3D", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnj18m462n9zda71c69b3h", + "text": "https://cunkebao.feishu.cn/minutes/obcnj18m462n9zda71c69b3h", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnkpb92mz4oj5444ys3184", + "text": "https://cunkebao.feishu.cn/minutes/obcnkpb92mz4oj5444ys3184", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://mcnmksxprtdd.feishu.cn/minutes/obcnleg937yi97h4xc311829?from=from_copylink", + "text": "https://mcnmksxprtdd.feishu.cn/minutes/obcnleg937yi97h4xc311829?from=from_copylink", + "type": "url" + } + ], + null + ], + [ + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnzwzh182i71s4bl4bd11r", + "text": "https://cunkebao.feishu.cn/minutes/obcnzwzh182i71s4bl4bd11r", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "内部会议智要", + { + "fileToken": "OAq2b7dcgojzhfxSOQocSnAInnb", + "height": 4342, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/OAq2b7dcgojzhfxSOQocSnAInnb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1410 + }, + null, + { + "fileToken": "MpLTbrUqHo7TRFxAvULcAavonZn", + "height": 6159, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/MpLTbrUqHo7TRFxAvULcAavonZn/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1636 + }, + null, + { + "fileToken": "H28FbAEQ8oAdl7xLHiMch6xbnpf", + "height": 6259, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/H28FbAEQ8oAdl7xLHiMch6xbnpf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1292 + }, + { + "fileToken": "VULnbYYVxod9o6xWYMUcSVw8nfb", + "height": 6419, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/VULnbYYVxod9o6xWYMUcSVw8nfb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1430 + }, + null, + { + "fileToken": "TdbDbOeK0ogOk1xfuSOceNUOn9e", + "height": 4929, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/TdbDbOeK0ogOk1xfuSOceNUOn9e/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 987 + }, + { + "fileToken": "KVKDbt1oNokN46xRV9rceBDmnAh", + "height": 6365, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KVKDbt1oNokN46xRV9rceBDmnAh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1422 + }, + { + "fileToken": "F6fSbAOZJomP3mxP3zqcnIQ5nvb", + "height": 7929, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/F6fSbAOZJomP3mxP3zqcnIQ5nvb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1624 + }, + null, + { + "fileToken": "OnNWb3Lg8oh3cUxM5yrcwpo8nYd", + "height": 6637, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/OnNWb3Lg8oh3cUxM5yrcwpo8nYd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1860 + }, + { + "fileToken": "W9pzbNlMMoCbSExWoqncVrcQnMh", + "height": 4929, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/W9pzbNlMMoCbSExWoqncVrcQnMh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 987 + }, + { + "fileToken": "M69obGOhFohx9QxUsPWcZk9onAg", + "height": 5582, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/M69obGOhFohx9QxUsPWcZk9onAg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1448 + }, + { + "fileToken": "YLglb90ChomG9kxgxHacfDPHn8c", + "height": 3596, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/YLglb90ChomG9kxgxHacfDPHn8c/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1248 + }, + { + "fileToken": "QKb8bugUYo3baHxU5gZcDaWUnRc", + "height": 6161, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/QKb8bugUYo3baHxU5gZcDaWUnRc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1574 + }, + { + "fileToken": "Q27jbfgBzo9nHHxEwYccxtDbnIj", + "height": 7272, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Q27jbfgBzo9nHHxEwYccxtDbnIj/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1134 + }, + null, + { + "fileToken": "GxUKboCi6ovbOSxlqBDcJu9Pn7K", + "height": 6354, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/GxUKboCi6ovbOSxlqBDcJu9Pn7K/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1270 + }, + null, + null, + { + "fileToken": "P1LsbQQxCohJoJxtrdUcDh0EnLg", + "height": 7109, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/P1LsbQQxCohJoJxtrdUcDh0EnLg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1274 + }, + null, + null, + null, + null, + null, + null, + null, + { + "fileToken": "CzxhbSkySovDm4x9Ah2ciC4Ongc", + "height": 1397, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/CzxhbSkySovDm4x9Ah2ciC4Ongc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + { + "fileToken": "MLadbjerkoR5CXxZnVCc2aAcn1z", + "height": 3992, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/MLadbjerkoR5CXxZnVCc2aAcn1z/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1760 + }, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-678f1dc1a6a881919681d12009646189-xie-zuo/project", + "text": "文章:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-690e975cd34481918630f00c94d28f0d-soulqie-pian/project", + "text": "生成切片:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + "RLJkLX": [ + [ + "12月", + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + "统计" + ], + [ + "一、效果数据", + "35场", + "36场", + "37场", + "38场", + "39场", + "40场", + null, + "41场", + "42场", + "43场", + "44场", + "45场", + "46场", + null, + "47场", + "48场", + "49场", + "50场", + "51场", + "52场", + null, + "53场", + "54场", + "55场", + "56场", + "57场", + "58场", + null, + "59场", + "60场", + "61场", + null + ], + [ + "主题", + "冻品转型,木材困境,游戏典当", + "房产引流,私域崩塌,年投300万", + "物业送水,游戏典当,千川对赌", + "杠杆配资,私募尽调,投资逻辑", + "滴滴代骂,海员培训骗局揭秘,地摊经济5.0", + "矩阵搬运赚钱逻辑,平台打压真相,个人成长书籍", + null, + "小红书打粉,大健康认知,游戏典当,闲鱼变现", + "知识付费核心,临期食品渠道,品牌品宣模式,厦门实体困境", + "08年电商红利,欧洲代购,跨境电商,AI漫剧元年爆发", + "商会核心打法,家居清货实战,电商合伙人计划", + "全链路创业,地摊清货,信任变现,炒房困局", + "大健康、中医、成人", + null, + "场木材,导游", + "益生元,围巾,卡车", + " AI智习室 小课包+私域直播", + "旅游上亿 , 国际大盘数据", + "AI 智能体项目,MBTI 分析产品,发型魔镜项目", + "西瓜电商,空中分账,万科套利,MBTI识人", + null, + "主播困境,私域,税务风险", + "海外淘客,游戏主播签约内幕,MCN分成机制揭秘", + "搞钱主线,漏洞思维,淘宝霸屏", + "程序员提款机,数据典当创新,创业最大秘诀", + "50万手机号精准变现,信息流暴利逻辑,", + "AI分销5步法,灰产引流闭环,美业中台18年体系", + null, + null, + null, + "引流破局,核桃私域,军创模式", + "IFERROR(AVERAGEIF(B3:AF3, \"<>0\", B3:AF3),\"\")" + ], + [ + "时长", + 145, + 86, + 169, + 96, + 128, + 129, + null, + 180, + 152, + 151, + 110, + 102, + 156, + null, + 170, + 210, + 163, + 161, + 110, + 137, + null, + 177, + 152, + 157, + 132, + 120, + 173, + null, + 139, + 150, + 120, + "SUM(B4:AF4)" + ], + [ + "Soul推流人数", + 6124, + 4893, + 9936, + 2497, + 12639, + 11360, + null, + 10132, + 12045, + 12021, + 16321, + 23416, + 42548, + null, + 35911, + 24060, + 22064, + 38036, + 22667, + 33909, + null, + 25575, + 18076, + 23281, + 27034, + 26651, + 37309, + null, + 26868, + 49031, + 28441, + "SUM(B5:AF5)" + ], + [ + "进房人数", + 132, + 72, + 229, + 36, + 228, + 255, + null, + 252, + 231, + 230, + 239, + 205, + 538, + null, + 511, + 603, + 413, + 502, + 330, + 332, + null, + 409, + 318, + 415, + 361, + 451, + 512, + null, + 372, + 539, + 380, + "SUM(B6:AF6)" + ], + [ + "人均时长", + 12, + 12, + 15, + null, + 8, + 10, + null, + 12, + 11, + 11, + 13, + 10, + 9, + null, + null, + null, + 12, + 10, + 9, + 14, + null, + 12, + 13, + null, + null, + null, + 15, + null, + 12, + 11, + 8, + "AVERAGEA((B7:AF7))" + ], + [ + "互动数量", + 91, + null, + 164, + null, + 134, + 131, + null, + 186, + 149, + 149, + 106, + 101, + 175, + null, + null, + null, + 174, + 276, + 81, + 250, + null, + 326, + 202, + null, + null, + null, + 223, + null, + 212, + 245, + 89, + "SUM(B8:AF8)" + ], + [ + "礼物", + null, + 3, + 3, + 2, + 10, + 3, + null, + null, + 1, + 1, + null, + null, + 7, + null, + 11, + null, + 5, + 5, + null, + 1, + null, + 4, + 1, + 4, + null, + 1, + 4, + null, + null, + 4, + 5, + "SUM(B9:AF9)" + ], + [ + "灵魂力", + null, + 199, + 3, + 3, + 23, + 23, + null, + null, + null, + null, + null, + null, + 114, + null, + 701, + null, + 17, + 4, + null, + null, + null, + 15, + 8, + 16, + null, + 8, + 11, + null, + null, + 79, + 12, + "SUM(B10:AF10)" + ], + [ + "增加关注", + 7, + 1, + 8, + null, + 13, + 8, + null, + 14, + 16, + 15, + 7, + 12, + 39, + null, + 33, + 19, + 30, + 31, + 13, + 14, + null, + 47, + 19, + 36, + 9, + 33, + 43, + null, + 19, + 27, + 11, + "SUM(B11:AF11)" + ], + [ + "最高在线", + null, + 15, + 33, + 9, + 33, + 45, + null, + null, + 34, + 34, + null, + null, + 68, + null, + 57, + 38, + 53, + 62, + 52, + 51, + null, + 58, + 43, + 74, + 49, + 81, + 70, + null, + 61, + 74, + 53, + "AVERAGEA(B12:AF12)" + ], + [ + "推流进房率", + "IFERROR(B5/B6,\"\")", + "IFERROR(C5/C6,\"\")", + "IFERROR(D5/D6,\"\")", + "IFERROR(E5/E6,\"\")", + "IFERROR(F5/F6,\"\")", + "IFERROR(G5/G6,\"\")", + "IFERROR(H5/H6,\"\")", + "IFERROR(I5/I6,\"\")", + "IFERROR(J5/J6,\"\")", + "IFERROR(K5/K6,\"\")", + "IFERROR(L5/L6,\"\")", + "IFERROR(M5/M6,\"\")", + "IFERROR(N5/N6,\"\")", + "IFERROR(O5/O6,\"\")", + "IFERROR(P5/P6,\"\")", + "IFERROR(Q5/Q6,\"\")", + "IFERROR(R5/R6,\"\")", + "IFERROR(S5/S6,\"\")", + "IFERROR(T5/T6,\"\")", + "IFERROR(U5/U6,\"\")", + "IFERROR(V5/V6,\"\")", + "IFERROR(W5/W6,\"\")", + "IFERROR(X5/X6,\"\")", + "IFERROR(Y5/Y6,\"\")", + "IFERROR(Z5/Z6,\"\")", + "IFERROR(AA5/AA6,\"\")", + "IFERROR(AB5/AB6,\"\")", + "IFERROR(AC5/AC6,\"\")", + "IFERROR(AD5/AD6,\"\")", + "IFERROR(AE5/AE6,\"\")", + "IFERROR(AF5/AF6,\"\")", + "IFERROR(AVERAGEIF(B13:AF13, \"<>0\", B13:AF13),\"\")" + ], + [ + "1分钟进多少人", + "IFERROR(B6/B4,\"\")", + "IFERROR(C6/C4,\"\")", + "IFERROR(D6/D4,\"\")", + "IFERROR(E6/E4,\"\")", + "IFERROR(F6/F4,\"\")", + "IFERROR(G6/G4,\"\")", + "IFERROR(H6/H4,\"\")", + "IFERROR(I6/I4,\"\")", + "IFERROR(J6/J4,\"\")", + "IFERROR(K6/K4,\"\")", + "IFERROR(L6/L4,\"\")", + "IFERROR(M6/M4,\"\")", + "IFERROR(N6/N4,\"\")", + null, + "IFERROR(P6/P4,\"\")", + "IFERROR(Q6/Q4,\"\")", + "IFERROR(R6/R4,\"\")", + "IFERROR(S6/S4,\"\")", + "IFERROR(T6/T4,\"\")", + "IFERROR(U6/U4,\"\")", + null, + "IFERROR(W6/W4,\"\")", + "IFERROR(X6/X4,\"\")", + "IFERROR(Y6/Y4,\"\")", + "IFERROR(Z6/Z4,\"\")", + "IFERROR(AA6/AA4,\"\")", + "IFERROR(AB6/AB4,\"\")", + "IFERROR(AC6/AC4,\"\")", + "IFERROR(AD6/AD4,\"\")", + "IFERROR(AE6/AE4,\"\")", + "IFERROR(AF6/AF4,\"\")", + "IFERROR(AVERAGEIF(B14:AF14, \"<>0\", B14:AF14),\"\")" + ], + [ + "关注/进房人数", + "IFERROR(B11/B6,\"\")", + "IFERROR(C11/C6,\"\")", + "IFERROR(D11/D6,\"\")", + "IFERROR(E11/E6,\"\")", + "IFERROR(F11/F6,\"\")", + "IFERROR(G11/G6,\"\")", + "IFERROR(H11/H6,\"\")", + "IFERROR(I11/I6,\"\")", + "IFERROR(J11/J6,\"\")", + "IFERROR(K11/K6,\"\")", + "IFERROR(L11/L6,\"\")", + "IFERROR(M11/M6,\"\")", + "IFERROR(N11/N6,\"\")", + null, + "IFERROR(P11/P6,\"\")", + "IFERROR(Q11/Q6,\"\")", + "IFERROR(R11/R6,\"\")", + "IFERROR(S11/S6,\"\")", + "IFERROR(T11/T6,\"\")", + "IFERROR(U11/U6,\"\")", + null, + "IFERROR(W11/W6,\"\")", + "IFERROR(X11/X6,\"\")", + "IFERROR(Y11/Y6,\"\")", + "IFERROR(Z11/Z6,\"\")", + "IFERROR(AA11/AA6,\"\")", + "IFERROR(AB11/AB6,\"\")", + "IFERROR(AC11/AC6,\"\")", + "IFERROR(AD11/AD6,\"\")", + "IFERROR(AE11/AE6,\"\")", + "IFERROR(AF11/AF6,\"\")", + "IFERROR(AVERAGEIF(B15:AF15, \"<>0\", B15:AF15),\"\")" + ], + [ + "加微率", + "IFERROR(B19/B6,\"\")", + "IFERROR(C19/C6,\"\")", + "IFERROR(D19/D6,\"\")", + "IFERROR(E19/E6,\"\")", + "IFERROR(F19/F6,\"\")", + "IFERROR(G19/G6,\"\")", + "IFERROR(H19/H6,\"\")", + "IFERROR(I19/I6,\"\")", + "IFERROR(J19/J6,\"\")", + "IFERROR(K19/K6,\"\")", + "IFERROR(L19/L6,\"\")", + "IFERROR(M19/M6,\"\")", + "IFERROR(N19/N6,\"\")", + null, + "IFERROR(P19/P6,\"\")", + "IFERROR(Q19/Q6,\"\")", + "IFERROR(R19/R6,\"\")", + "IFERROR(S19/S6,\"\")", + "IFERROR(T19/T6,\"\")", + "IFERROR(U19/U6,\"\")", + null, + "IFERROR(W19/W6,\"\")", + "IFERROR(X19/X6,\"\")", + "IFERROR(Y19/Y6,\"\")", + "IFERROR(Z19/Z6,\"\")", + "IFERROR(AA19/AA6,\"\")", + "IFERROR(AB19/AB6,\"\")", + "IFERROR(AC19/AC6,\"\")", + "IFERROR(AD19/AD6,\"\")", + "IFERROR(AE19/AE6,\"\")", + "IFERROR(AF19/AF6,\"\")", + "IFERROR(AVERAGEIF(B16:AF16, \"<>0\", B16:AF16),\"\")" + ], + [ + "二、结果数据", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B17:AF17, \"<>0\", B17:AF17),\"\")" + ], + [ + "入群数量", + null, + 1, + 2, + null, + 1, + 1, + null, + 6, + 1, + 1, + null, + null, + 2, + null, + 2, + 2, + 5, + 4, + null, + 4, + null, + 1, + 2, + 5, + 3, + 1, + null, + null, + 1, + 3, + 2, + "SUM(B18:AF18)" + ], + [ + "微信进粉人数", + null, + 1, + 2, + null, + 1, + 1, + null, + 6, + 2, + 1, + null, + null, + 2, + null, + 2, + 2, + 5, + 4, + null, + 4, + null, + 4, + 2, + 5, + 4, + 1, + 1, + null, + 5, + null, + 2, + "SUM(B19:AF19)" + ], + [ + "线下带人", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "切片分发", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "曝光量", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B22:AF22)" + ], + [ + "发布人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "三、成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B24:AF24, \"<>0\", B24:AF24),\"\")" + ], + [ + "运营成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B25:AF25, \"<>0\", B25:AF25),\"\")" + ], + [ + "支付费用", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B26:AF26, \"<>0\", B26:AF26),\"\")" + ], + [ + "单粉产值", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "【今日总结】\n1、自我剖析\n2、总结规律\n3、问题处理\n4、明日优化\t", + { + "fileToken": "KDvFbGFqioDDwvxDf59c66Z4ndh", + "height": 8260, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KDvFbGFqioDDwvxDf59c66Z4ndh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2120 + }, + { + "fileToken": "CAD7bKVTzo5S6xx45RhcVEkWnJe", + "height": 8214, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/CAD7bKVTzo5S6xx45RhcVEkWnJe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2380 + }, + { + "fileToken": "HDdEbkrTcoS9MuxORV8ci30hnWf", + "height": 12313, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/HDdEbkrTcoS9MuxORV8ci30hnWf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1540 + }, + { + "fileToken": "I40rbNQ7romDRRxvKNRcFhGPnUf", + "height": 8774, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/I40rbNQ7romDRRxvKNRcFhGPnUf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2344 + }, + { + "fileToken": "Io0VbegkboKIEPxrlUGcCDEWnFd", + "height": 6728, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Io0VbegkboKIEPxrlUGcCDEWnFd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2048 + }, + { + "fileToken": "XdYabCQgdoX9E4xFvXycPkGCnzf", + "height": 8199, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/XdYabCQgdoX9E4xFvXycPkGCnzf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2048 + }, + null, + { + "fileToken": "V22JbVJwXolU75xDcZNcZ4pEnTe", + "height": 12858, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/V22JbVJwXolU75xDcZNcZ4pEnTe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2360 + }, + { + "fileToken": "AnnubLmBLon4uZx4bKmcxPREnOc", + "height": 8769, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/AnnubLmBLon4uZx4bKmcxPREnOc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2356 + }, + { + "fileToken": "JboabsTgeoThYjx8Y7Ycjattncd", + "height": 11501, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/JboabsTgeoThYjx8Y7Ycjattncd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2360 + }, + { + "fileToken": "VpS3ba55colP23xxXRAcoyBAnPh", + "height": 11108, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/VpS3ba55colP23xxXRAcoyBAnPh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2328 + }, + { + "fileToken": "WsOobZkxcoiLh7x3D5Lcvxp7nBh", + "height": 7094, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/WsOobZkxcoiLh7x3D5Lcvxp7nBh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2356 + }, + { + "fileToken": "KBIZbQ6skopBomxs8OQcSDCKnwe", + "height": 6722, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KBIZbQ6skopBomxs8OQcSDCKnwe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2348 + }, + null, + { + "fileToken": "ElXcbkRi6oO1NlxAXK7clS69n8f", + "height": 11466, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/ElXcbkRi6oO1NlxAXK7clS69n8f/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2424 + }, + { + "fileToken": "Jos3b8bk1oOy3fxTiuzc0KQznCd", + "height": 9438, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Jos3b8bk1oOy3fxTiuzc0KQznCd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2648 + }, + { + "fileToken": "OYR5bcgh8ob52Wx4RJccSPF9nOt", + "height": 11632, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/OYR5bcgh8ob52Wx4RJccSPF9nOt/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2676 + }, + { + "fileToken": "G7mRbSdEBoXo37xXD4JcIsPbnqH", + "height": 7440, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/G7mRbSdEBoXo37xXD4JcIsPbnqH/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1050 + }, + { + "fileToken": "RZkBbpkrRoH5bLxrWCEch92OnJc", + "height": 6941, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/RZkBbpkrRoH5bLxrWCEch92OnJc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1042 + }, + { + "fileToken": "Vya0bRwj2ovI3ex6qiocx7l2nfg", + "height": 8137, + "link": "https://cunkebao.feishu.cn/space/api/box/stream/download/v2/cover/Vya0bRwj2ovI3ex6qiocx7l2nfg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1006 + }, + null, + { + "fileToken": "EP0xbxDuZombJcx70yzc84AhnCe", + "height": 8315, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/EP0xbxDuZombJcx70yzc84AhnCe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1044 + }, + { + "fileToken": "KFztbIGTko9ypYxX9A0c69axnUc", + "height": 6386, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KFztbIGTko9ypYxX9A0c69axnUc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1044 + }, + { + "fileToken": "MPuibCWhKoFfYrx7E1kcRL7qnKi", + "height": 6794, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/MPuibCWhKoFfYrx7E1kcRL7qnKi/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1046 + }, + { + "fileToken": "I0RXbvv8WoHMaWxlfkXcWdQ2ndc", + "height": 7190, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/I0RXbvv8WoHMaWxlfkXcWdQ2ndc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1046 + }, + { + "fileToken": "DXCNbzCJ6ohiUkxVcTWcTd1insg", + "height": 6046, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/DXCNbzCJ6ohiUkxVcTWcTd1insg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1266 + }, + { + "fileToken": "LtJ0b29LVoAVavxSavTcbO0bnEh", + "height": 6538, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/LtJ0b29LVoAVavxSavTcbO0bnEh/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1266 + }, + null, + null, + { + "fileToken": "NqEIb30KZoeDvNxMOwucTY5anFd", + "height": 4766, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/NqEIb30KZoeDvNxMOwucTY5anFd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1314 + }, + { + "fileToken": "KFATb1HLqoSVyvxkpoicymNInzc", + "height": 6290, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/KFATb1HLqoSVyvxkpoicymNInzc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1582 + }, + null + ], + [ + "派对录屏", + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnek3211i292wzs6hyfq5z", + "text": "https://cunkebao.feishu.cn/minutes/obcnek3211i292wzs6hyfq5z", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcne9ylte672jj1a6yq31dr", + "text": "https://cunkebao.feishu.cn/minutes/obcne9ylte672jj1a6yq31dr", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnfxx6291epz98vxz3me3f", + "text": "https://cunkebao.feishu.cn/minutes/obcnfxx6291epz98vxz3me3f", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcngo14my3uv7ln9471sx37", + "text": "https://cunkebao.feishu.cn/minutes/obcngo14my3uv7ln9471sx37", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnhcr888gq2893745sl53a", + "text": "https://cunkebao.feishu.cn/minutes/obcnhcr888gq2893745sl53a", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnhz2tlkb2yrzz1kazv3n5", + "text": "https://cunkebao.feishu.cn/minutes/obcnhz2tlkb2yrzz1kazv3n5", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnjd81d88n328skc356hy5", + "text": "https://cunkebao.feishu.cn/minutes/obcnjd81d88n328skc356hy5", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnj2yqkml239x897h6bv84", + "text": "https://cunkebao.feishu.cn/minutes/obcnj2yqkml239x897h6bv84", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnkqh499288723211i3538", + "text": "https://cunkebao.feishu.cn/minutes/obcnkqh499288723211i3538", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnlg1u2543h9k8w4so4vzo", + "text": "https://cunkebao.feishu.cn/minutes/obcnlg1u2543h9k8w4so4vzo", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnl4a26lu2h2z671p85r38", + "text": "https://cunkebao.feishu.cn/minutes/obcnl4a26lu2h2z671p85r38", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnmsy27wh7hhb58gvcb9d8", + "text": "https://cunkebao.feishu.cn/minutes/obcnmsy27wh7hhb58gvcb9d8", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnn68m89delh2o1m386x1l", + "text": "https://cunkebao.feishu.cn/minutes/obcnn68m89delh2o1m386x1l", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnou46xmynmssv4ycx29sk", + "text": "https://cunkebao.feishu.cn/minutes/obcnou46xmynmssv4ycx29sk", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnpj134jz95fi1pu9xuz64", + "text": "https://cunkebao.feishu.cn/minutes/obcnpj134jz95fi1pu9xuz64", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnp9ik1mm137752p6f962m", + "text": "https://cunkebao.feishu.cn/minutes/obcnp9ik1mm137752p6f962m", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnqx5ja321ewfj1nx5l78v", + "text": "https://cunkebao.feishu.cn/minutes/obcnqx5ja321ewfj1nx5l78v", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnrmbycq1kcy25215gcc6g", + "text": "https://cunkebao.feishu.cn/minutes/obcnrmbycq1kcy25215gcc6g", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnszt5h7bsk1xo7x61p7fp", + "text": "https://cunkebao.feishu.cn/minutes/obcnszt5h7bsk1xo7x61p7fp", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcntob4m5pq386zqj88t564", + "text": "https://cunkebao.feishu.cn/minutes/obcntob4m5pq386zqj88t564", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnucgnovcfkn4896379b3a", + "text": "https://cunkebao.feishu.cn/minutes/obcnucgnovcfkn4896379b3a", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnu2mz224y6si8my9p7121", + "text": "https://cunkebao.feishu.cn/minutes/obcnu2mz224y6si8my9p7121", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnvpx8wsgrtjydv8s3x7uv", + "text": "https://cunkebao.feishu.cn/minutes/obcnvpx8wsgrtjydv8s3x7uv", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnweu21jp3zzj465kwl2oa", + "text": "https://cunkebao.feishu.cn/minutes/obcnweu21jp3zzj465kwl2oa", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnxs9f376ux7d12j1p7c9u", + "text": "https://cunkebao.feishu.cn/minutes/obcnxs9f376ux7d12j1p7c9u", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnyg1tp776899n83y3bnxe", + "text": "https://cunkebao.feishu.cn/minutes/obcnyg1tp776899n83y3bnxe", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcny6jpme2xgjlw9gu36u96", + "text": "https://cunkebao.feishu.cn/minutes/obcny6jpme2xgjlw9gu36u96", + "type": "url" + } + ], + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnj73p87zl51a284v589lr", + "text": "https://cunkebao.feishu.cn/minutes/obcnj73p87zl51a284v589lr", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "团队会议", + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnfxx6291epz98vxz3me3f", + "text": "https://cunkebao.feishu.cn/minutes/obcnfxx6291epz98vxz3me3f", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnlfz3at52d35my95zsj2l", + "text": "https://cunkebao.feishu.cn/minutes/obcnlfz3at52d35my95zsj2l", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnmh22ri16yijhx42jdjuz", + "text": "https://cunkebao.feishu.cn/minutes/obcnmh22ri16yijhx42jdjuz", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnms911bi874r98g18vz4x", + "text": "https://cunkebao.feishu.cn/minutes/obcnms911bi874r98g18vz4x", + "type": "url" + } + ], + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnou46xmynmssv4ycx29sk", + "text": "https://cunkebao.feishu.cn/minutes/obcnou46xmynmssv4ycx29sk", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://nit7il1abe6.feishu.cn/minutes/obcnpjez937ww19183b92e66", + "text": "https://nit7il1abe6.feishu.cn/minutes/obcnpjez937ww19183b92e66", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnqwrzc9q6cm4e13u85tic", + "text": "https://cunkebao.feishu.cn/minutes/obcnqwrzc9q6cm4e13u85tic", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnrl32ocw4i57v97151cqf", + "text": "https://cunkebao.feishu.cn/minutes/obcnrl32ocw4i57v97151cqf", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://acn874b6ntci.feishu.cn/minutes/obcnweom74yte9n5698tc41j", + "text": "https://acn874b6ntci.feishu.cn/minutes/obcnweom74yte9n5698tc41j", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnxr2d55gllu27fu6s68p7", + "text": "https://cunkebao.feishu.cn/minutes/obcnxr2d55gllu27fu6s68p7", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnyg7w1irf932e49ui37i4", + "text": "https://cunkebao.feishu.cn/minutes/obcnyg7w1irf932e49ui37i4", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://applink.feishu.cn/client/message/link/open?token=Amj6uWoKmgATaVVDjNoAi9M%3D", + "text": "https://applink.feishu.cn/client/message/link/open?token=Amj6uWoKmgATaVVDjNoAi9M%3D", + "type": "url" + } + ], + null + ], + [ + "内部会议智要", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "fileToken": "Fbb2bJZrhorLAnx5h1ccy6x8ndf", + "height": 4852, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Fbb2bJZrhorLAnx5h1ccy6x8ndf/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2032 + }, + { + "fileToken": "LvhvbraqWoIfQRxDrJTcQcounge", + "height": 2816, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/LvhvbraqWoIfQRxDrJTcQcounge/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1304 + }, + { + "fileToken": "VPs1bvptmonlbixxKlZcqHnznMd", + "height": 4056, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/VPs1bvptmonlbixxKlZcqHnznMd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1300 + }, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-678f1dc1a6a881919681d12009646189-xie-zuo/project", + "text": "文章:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-690e975cd34481918630f00c94d28f0d-soulqie-pian/project", + "text": "生成切片:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + "K9F2Ab": [ + [ + "11月", + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + null, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + "统计" + ], + [ + "一、效果数据", + "13场", + null, + "14场", + "15场", + "16场", + "17场", + "18场", + "19场", + null, + "20 场", + "21场", + "22 场", + null, + "23 场", + null, + null, + "25 场", + null, + null, + "26 场", + null, + "27场 ", + "28 场", + "29 场", + "30场", + "31场", + "32场 ", + "33场", + "34 场", + null, + null, + null + ], + [ + "主题", + "魔兽世界金币", + null, + "分享我的经验", + "魔兽私服、留学、美业", + "切片裂变", + "游戏", + "团队的新增2人", + "陪玩、学校、切片", + null, + "币圈退休,信任闭环,发币技术,电竞签约", + "电竞帝国,烟盒生意,痛车蓝图,RWA密码", + "记忆宫殿,流量密码,宠物创业,游戏金融", + null, + null, + null, + null, + "尾货面料", + null, + null, + "飞机 猫 做号\n\n旅游 社区团购 供应链整合\n\n蕉总 人力资源 老墨介绍所有", + null, + "成立了一个苹果项目", + null, + "小红书", + null, + "凯文凯利", + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B3:AF3, \"<>0\", B3:AF3),\"\")" + ], + [ + "时长", + 139, + null, + 60, + 200, + 161, + 168, + 172, + 93, + null, + 60, + 133, + 117, + null, + 76, + null, + null, + 85, + null, + null, + 160, + null, + 129, + 57, + 144, + 130, + 191, + 127, + 77, + 160, + null, + null, + "SUM(B4:AF4)" + ], + [ + "Soul推流人数", + 1926, + null, + 1954, + 2130, + 2158, + 2645, + 4206, + 2543, + null, + 2187, + 3875, + 3582, + null, + 3514, + null, + null, + 4083, + null, + null, + 9807, + null, + 9561, + 4687, + 8565, + 9231, + 9871, + 6354, + 7650, + 9639, + null, + null, + null + ], + [ + "进房人数", + 53, + null, + 60, + 49, + 42, + 83, + 120, + 50, + null, + 30, + 57, + 46, + null, + 33, + null, + null, + 70, + null, + null, + 249, + null, + 159, + 69, + 120, + 154, + 213, + 121, + 139, + 188, + null, + null, + "SUM(B6:AF6)" + ], + [ + "人均时长", + 20, + null, + 9, + 15, + 20, + 18, + 16, + 12, + null, + 5, + 15, + 8, + null, + 17, + null, + null, + 10, + null, + null, + 10, + null, + 15, + 7, + 12, + 10, + 10, + 10, + 10, + 11, + null, + null, + "AVERAGEA((B7:AF7))" + ], + [ + "互动数量", + null, + null, + 18, + 83, + null, + null, + 139, + 45, + null, + null, + null, + 90, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 106, + null, + 64, + 36, + 63, + 91, + null, + null, + "SUM(B8:AF8)" + ], + [ + "礼物", + null, + null, + null, + null, + null, + null, + null, + 1, + null, + null, + null, + 2, + null, + 3, + null, + null, + null, + null, + null, + 3, + null, + null, + null, + null, + 16, + 2, + 6, + null, + 5, + null, + null, + "SUM(B9:AF9)" + ], + [ + "灵魂力", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 15, + null, + null, + null, + null, + 248, + 15, + 55, + null, + 25, + null, + null, + "SUM(B10:AF10)" + ], + [ + "增加关注", + 8, + null, + 5, + 6, + 2, + 7, + 20, + 4, + null, + null, + 2, + 3, + null, + 2, + null, + null, + 6, + null, + null, + 24, + null, + 10, + 3, + 3, + 9, + 10, + 4, + 12, + 8, + null, + null, + "SUM(B11:AF11)" + ], + [ + "最高在线", + 14, + null, + 18, + 11, + 15, + 19, + 24, + 15, + null, + 11, + 9, + 8, + null, + 12, + null, + null, + 19, + null, + null, + 41, + null, + 29, + 7, + 20, + 25, + 28, + 21, + 30, + 25, + null, + null, + "AVERAGEA(B12:AF12)" + ], + [ + "推流进房率", + "IFERROR(B5/B6,\"\")", + "IFERROR(C5/C6,\"\")", + "IFERROR(D5/D6,\"\")", + "IFERROR(E5/E6,\"\")", + "IFERROR(F5/F6,\"\")", + "IFERROR(G5/G6,\"\")", + "IFERROR(H5/H6,\"\")", + "IFERROR(I5/I6,\"\")", + "IFERROR(J5/J6,\"\")", + "IFERROR(K5/K6,\"\")", + "IFERROR(L5/L6,\"\")", + "IFERROR(M5/M6,\"\")", + "IFERROR(N5/N6,\"\")", + "IFERROR(O5/O6,\"\")", + "IFERROR(P5/P6,\"\")", + "IFERROR(Q5/Q6,\"\")", + "IFERROR(R5/R6,\"\")", + "IFERROR(S5/S6,\"\")", + "IFERROR(T5/T6,\"\")", + "IFERROR(U5/U6,\"\")", + "IFERROR(V5/V6,\"\")", + "IFERROR(W5/W6,\"\")", + "IFERROR(X5/X6,\"\")", + "IFERROR(Y5/Y6,\"\")", + "IFERROR(Z5/Z6,\"\")", + "IFERROR(AA5/AA6,\"\")", + "IFERROR(AB5/AB6,\"\")", + "IFERROR(AC5/AC6,\"\")", + "IFERROR(AD5/AD6,\"\")", + "IFERROR(AE5/AE6,\"\")", + "IFERROR(AF5/AF6,\"\")", + "IFERROR(AVERAGEIF(B13:AF13, \"<>0\", B13:AF13),\"\")" + ], + [ + "1分钟进多少人", + "IFERROR(B6/B4,\"\")", + "IFERROR(C6/C4,\"\")", + "IFERROR(D6/D4,\"\")", + "IFERROR(E6/E4,\"\")", + "IFERROR(F6/F4,\"\")", + "IFERROR(G6/G4,\"\")", + "IFERROR(H6/H4,\"\")", + "IFERROR(I6/I4,\"\")", + "IFERROR(J6/J4,\"\")", + "IFERROR(K6/K4,\"\")", + "IFERROR(L6/L4,\"\")", + "IFERROR(M6/M4,\"\")", + "IFERROR(N6/N4,\"\")", + "IFERROR(O6/O4,\"\")", + "IFERROR(P6/P4,\"\")", + "IFERROR(Q6/Q4,\"\")", + "IFERROR(R6/R4,\"\")", + null, + "IFERROR(T6/T4,\"\")", + "IFERROR(U6/U4,\"\")", + null, + "IFERROR(W6/W4,\"\")", + "IFERROR(X6/X4,\"\")", + "IFERROR(Y6/Y4,\"\")", + "IFERROR(Z6/Z4,\"\")", + "IFERROR(AA6/AA4,\"\")", + "IFERROR(AB6/AB4,\"\")", + "IFERROR(AC6/AC4,\"\")", + "IFERROR(AD6/AD4,\"\")", + "IFERROR(AE6/AE4,\"\")", + "IFERROR(AF6/AF4,\"\")", + "IFERROR(AVERAGEIF(B14:AF14, \"<>0\", B14:AF14),\"\")" + ], + [ + "关注/进房人数", + "IFERROR(B11/B6,\"\")", + "IFERROR(C11/C6,\"\")", + "IFERROR(D11/D6,\"\")", + "IFERROR(E11/E6,\"\")", + "IFERROR(F11/F6,\"\")", + "IFERROR(G11/G6,\"\")", + "IFERROR(H11/H6,\"\")", + "IFERROR(I11/I6,\"\")", + "IFERROR(J11/J6,\"\")", + "IFERROR(K11/K6,\"\")", + "IFERROR(L11/L6,\"\")", + "IFERROR(M11/M6,\"\")", + "IFERROR(N11/N6,\"\")", + "IFERROR(O11/O6,\"\")", + "IFERROR(P11/P6,\"\")", + "IFERROR(Q11/Q6,\"\")", + "IFERROR(R11/R6,\"\")", + null, + "IFERROR(T11/T6,\"\")", + "IFERROR(U11/U6,\"\")", + null, + "IFERROR(W11/W6,\"\")", + "IFERROR(X11/X6,\"\")", + "IFERROR(Y11/Y6,\"\")", + "IFERROR(Z11/Z6,\"\")", + "IFERROR(AA11/AA6,\"\")", + "IFERROR(AB11/AB6,\"\")", + "IFERROR(AC11/AC6,\"\")", + "IFERROR(AD11/AD6,\"\")", + "IFERROR(AE11/AE6,\"\")", + "IFERROR(AF11/AF6,\"\")", + "IFERROR(AVERAGEIF(B15:AF15, \"<>0\", B15:AF15),\"\")" + ], + [ + "加微率", + "IFERROR(B19/B6,\"\")", + "IFERROR(C19/C6,\"\")", + "IFERROR(D19/D6,\"\")", + "IFERROR(E19/E6,\"\")", + "IFERROR(F19/F6,\"\")", + "IFERROR(G19/G6,\"\")", + "IFERROR(H19/H6,\"\")", + "IFERROR(I19/I6,\"\")", + "IFERROR(J19/J6,\"\")", + "IFERROR(K19/K6,\"\")", + "IFERROR(L19/L6,\"\")", + "IFERROR(M19/M6,\"\")", + "IFERROR(N19/N6,\"\")", + "IFERROR(O19/O6,\"\")", + "IFERROR(P19/P6,\"\")", + "IFERROR(Q19/Q6,\"\")", + "IFERROR(R19/R6,\"\")", + null, + "IFERROR(T19/T6,\"\")", + "IFERROR(U19/U6,\"\")", + null, + "IFERROR(W19/W6,\"\")", + "IFERROR(X19/X6,\"\")", + "IFERROR(Y19/Y6,\"\")", + "IFERROR(Z19/Z6,\"\")", + "IFERROR(AA19/AA6,\"\")", + "IFERROR(AB19/AB6,\"\")", + "IFERROR(AC19/AC6,\"\")", + "IFERROR(AD19/AD6,\"\")", + "IFERROR(AE19/AE6,\"\")", + "IFERROR(AF19/AF6,\"\")", + "IFERROR(AVERAGEIF(B16:AF16, \"<>0\", B16:AF16),\"\")" + ], + [ + "二、结果数据", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B17:AF17, \"<>0\", B17:AF17),\"\")" + ], + [ + "入群数量", + 4, + null, + 0, + 5, + null, + 3, + 7, + 3, + null, + 2, + null, + null, + null, + 1, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B18:AF18)" + ], + [ + "微信进粉人数", + 2, + null, + 1, + 1, + 1, + 2, + null, + null, + null, + null, + 1, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B19:AF19)" + ], + [ + "线下带人", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "切片分发", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "曝光量", + 2, + null, + 1, + 1, + 1, + 2, + null, + null, + null, + null, + 1, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "SUM(B22:AF22)" + ], + [ + "发布人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "三、成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B24:AF24, \"<>0\", B24:AF24),\"\")" + ], + [ + "运营成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B25:AF25, \"<>0\", B25:AF25),\"\")" + ], + [ + "支付费用", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B26:AF26, \"<>0\", B26:AF26),\"\")" + ], + [ + "单粉产值", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "【今日总结】\n1、自我剖析\n2、总结规律\n3、问题处理\n4、明日优化\t", + { + "fileToken": "UxHmbIvwGoomjpx2zYncausonhO", + "height": 7275, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/UxHmbIvwGoomjpx2zYncausonhO/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1456 + }, + null, + "董元录 18083840298\n了解电竞项目 \n意向合作200个", + "魔兽私服、留学、美业", + { + "fileToken": "QlkTbsA12okqQbxhTEGclLOAn8c", + "height": 5660, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/QlkTbsA12okqQbxhTEGclLOAn8c/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1416 + }, + { + "fileToken": "DNoLbM3HJo6d7gxne7CcGf8nnQc", + "height": 8523, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/DNoLbM3HJo6d7gxne7CcGf8nnQc/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1428 + }, + { + "fileToken": "J8dXbBJyHozZpYxg2lTcARlKnOg", + "height": 1299, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/J8dXbBJyHozZpYxg2lTcARlKnOg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 256 + }, + { + "fileToken": "GgsNb5ziOoxXqUxQLzQcNdUGnly", + "height": 8576, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/GgsNb5ziOoxXqUxQLzQcNdUGnly/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1424 + }, + null, + { + "fileToken": "EEtlb6gxeoIgaCxmOjXce5XrnUb", + "height": 6588, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/EEtlb6gxeoIgaCxmOjXce5XrnUb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1386 + }, + { + "fileToken": "FPZzbxBALoAdwnxRlJucYJa4nMd", + "height": 6606, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/FPZzbxBALoAdwnxRlJucYJa4nMd/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1274 + }, + { + "fileToken": "V0y5b7z9IojHa7xIHlCc79RynYb", + "height": 6831, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/V0y5b7z9IojHa7xIHlCc79RynYb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1394 + }, + { + "fileToken": "U0fMbgqESo0trqxJYftc4cFgnHg", + "height": 3619, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/U0fMbgqESo0trqxJYftc4cFgnHg/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1284 + }, + null, + null, + null, + { + "fileToken": "T8eVbUlZ4o0CEmxEchDcEJEIn9b", + "height": 5716, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/T8eVbUlZ4o0CEmxEchDcEJEIn9b/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1292 + }, + null, + null, + { + "fileToken": "Tg6Nb9YrWoenayxMiKAczJsRnor", + "height": 5071, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Tg6Nb9YrWoenayxMiKAczJsRnor/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1874 + }, + null, + { + "fileToken": "Wy6cbj01wohn6pxJGQTcnBvqn0e", + "height": 5883, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/Wy6cbj01wohn6pxJGQTcnBvqn0e/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1282 + }, + null, + { + "fileToken": "BGrbbIwcuoX2c3xWUeNcguqMn78", + "height": 7120, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/BGrbbIwcuoX2c3xWUeNcguqMn78/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2584 + }, + { + "fileToken": "UM3PbsvXEoee8gxPgDocvxHenHr", + "height": 11311, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/UM3PbsvXEoee8gxPgDocvxHenHr/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2512 + }, + { + "fileToken": "ErQRbiM7xoM8naxK0aOctLW7nne", + "height": 12283, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/ErQRbiM7xoM8naxK0aOctLW7nne/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2380 + }, + { + "fileToken": "MmxobJE0oo9pl2xEgtMcF5EcnHe", + "height": 1280, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/MmxobJE0oo9pl2xEgtMcF5EcnHe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 389 + }, + { + "fileToken": "HFIVb6pKPoRx5RxkV0lc2j83nfb", + "height": 5152, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/HFIVb6pKPoRx5RxkV0lc2j83nfb/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 1880 + }, + { + "fileToken": "EX91btvxGo5eJUxlv1XcSA88nfe", + "height": 7238, + "link": "https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/EX91btvxGo5eJUxlv1XcSA88nfe/?height=1280&mount_node_token=shtcnXIgGjJmFGmT6LvGLDWPMgf&mount_point=sheet_image&policy=equal&width=1280", + "text": "", + "type": "embed-image", + "width": 2136 + }, + null, + null, + null + ], + [ + "派对录屏", + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnszu219dul6hlvr5217d6", + "text": "https://cunkebao.feishu.cn/minutes/obcnszu219dul6hlvr5217d6", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnuayxj7paxtt4835bgibs", + "text": "https://cunkebao.feishu.cn/minutes/obcnuayxj7paxtt4835bgibs", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnszu219dul6hlvr5217d6", + "text": "https://cunkebao.feishu.cn/minutes/obcnszu219dul6hlvr5217d6", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnvpovr9h85rrjm499i936", + "text": "https://cunkebao.feishu.cn/minutes/obcnvpovr9h85rrjm499i936", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnwl5yodph4nfs8k64ddil", + "text": "https://cunkebao.feishu.cn/minutes/obcnwl5yodph4nfs8k64ddil", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnw4kfcr86o24gvlz9egv5", + "text": "https://cunkebao.feishu.cn/minutes/obcnw4kfcr86o24gvlz9egv5", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnxt39e39dsflq38ii5px2", + "text": "https://cunkebao.feishu.cn/minutes/obcnxt39e39dsflq38ii5px2", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcny6w5d36838q934shhtky", + "text": "https://cunkebao.feishu.cn/minutes/obcny6w5d36838q934shhtky", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnzt551zt67vj6127jar5s", + "text": "https://cunkebao.feishu.cn/minutes/obcnzt551zt67vj6127jar5s", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn1il7aqmh9nk6r9rzhn32", + "text": "https://cunkebao.feishu.cn/minutes/obcn1il7aqmh9nk6r9rzhn32", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn2a1312vtn53aq47dp1n3", + "text": "https://cunkebao.feishu.cn/minutes/obcn2a1312vtn53aq47dp1n3", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn2ypc47g8485s1o2s25ar", + "text": "https://cunkebao.feishu.cn/minutes/obcn2ypc47g8485s1o2s25ar", + "type": "url" + } + ], + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn4ylny4jevtx985uo2d5t", + "text": "https://cunkebao.feishu.cn/minutes/obcn4ylny4jevtx985uo2d5t", + "type": "url" + } + ], + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn619dhdm2uih2155exmsb", + "text": "https://cunkebao.feishu.cn/minutes/obcn619dhdm2uih2155exmsb", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn8eae5w93g8crb1gzj3l8", + "text": "https://cunkebao.feishu.cn/minutes/obcn8eae5w93g8crb1gzj3l8", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn9rl31bvf3813z39zc8g4", + "text": "https://cunkebao.feishu.cn/minutes/obcn9rl31bvf3813z39zc8g4", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnagn3y9c75ayo5dai2r3h", + "text": "https://cunkebao.feishu.cn/minutes/obcnagn3y9c75ayo5dai2r3h", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcna5mw3bs9jmr5q964hzmv", + "text": "https://cunkebao.feishu.cn/minutes/obcna5mw3bs9jmr5q964hzmv", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnbuq62v9w5dv6w6es371s", + "text": "https://cunkebao.feishu.cn/minutes/obcnbuq62v9w5dv6w6es371s", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcncjs5665i43p5uugm4j29", + "text": "https://cunkebao.feishu.cn/minutes/obcncjs5665i43p5uugm4j29", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnc7na12o3nyueex41cgeq", + "text": "https://cunkebao.feishu.cn/minutes/obcnc7na12o3nyueex41cgeq", + "type": "url" + } + ], + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnvz3s61w56jy9782kr7ca", + "text": "https://cunkebao.feishu.cn/minutes/obcnvz3s61w56jy9782kr7ca", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn1j9ln6znb6z62la8j52b", + "text": "https://cunkebao.feishu.cn/minutes/obcn1j9ln6znb6z62la8j52b", + "type": "url" + } + ], + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcn5od5njmpps46p4297945", + "text": "https://cunkebao.feishu.cn/minutes/obcn5od5njmpps46p4297945", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "团队会议", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-678f1dc1a6a881919681d12009646189-xie-zuo/project", + "text": "文章:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-690e975cd34481918630f00c94d28f0d-soulqie-pian/project", + "text": "生成切片:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + "PrDCKC": [ + [ + 10, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + "统计" + ], + [ + "一、效果数据", + null, + null, + null, + null, + null, + null, + null, + null, + "1场", + "2场", + "3场", + "4场", + "5场", + "6场", + null, + null, + null, + null, + null, + null, + null, + "7场", + null, + "8场", + "9场", + "10场", + "11场", + null, + null, + "12场", + null, + "IFERROR(AVERAGEIF(B2:AF2, \"<>0\", B2:AF2),\"\")" + ], + [ + "主题", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "RWA", + "RWA", + "团队主题", + "取房名被封", + null, + null, + null, + null, + null, + null, + null, + "数据库", + null, + "共享充电桩", + null, + "读书、财税", + "分享故事 ", + null, + null, + "药企、数字化", + null, + "IFERROR(AVERAGEIF(B3:AF3, \"<>0\", B3:AF3),\"\")" + ], + [ + "时长", + null, + null, + null, + null, + null, + null, + null, + null, + 128, + 124, + 199, + 114, + 247, + null, + null, + null, + null, + null, + null, + null, + null, + 160, + null, + 103, + 181, + 165, + 180, + null, + null, + 145, + null, + "SUM(B4:AF4)" + ], + [ + "soul推流人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "进房人数", + null, + null, + null, + null, + null, + null, + null, + null, + 125, + 127, + 71, + 87, + 107, + null, + null, + null, + null, + null, + null, + null, + null, + 145, + null, + 21, + 54, + 66, + 50, + null, + null, + 52, + null, + "SUM(B6:AF6)" + ], + [ + "人均时长", + null, + null, + null, + null, + null, + null, + null, + null, + 18, + 8, + 11, + 8, + 12, + null, + null, + null, + null, + null, + null, + null, + null, + 12, + null, + 23, + 14, + 18, + 20, + null, + null, + 22, + null, + "AVERAGEA((B7:AF7))" + ], + [ + "互动数量", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 87, + null, + 22, + null, + 33, + null, + null, + null, + 59, + null, + "SUM(B8:AF8)" + ], + [ + "增加关注", + null, + null, + null, + null, + null, + null, + null, + null, + 9, + 9, + 6, + 7, + 31, + null, + null, + null, + null, + null, + null, + null, + null, + 14, + null, + 5, + 4, + 4, + 14, + null, + null, + 7, + null, + "SUM(B9:AF9)" + ], + [ + "最高在线", + null, + null, + null, + null, + null, + null, + null, + null, + 18, + null, + 11, + 17, + 13, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 13, + 16, + 17, + null, + null, + 19, + null, + "AVERAGEA(B10:AF10)" + ], + [ + "平均入人数", + "IFERROR(0,B6/B4)", + "IFERROR(0,C6/C4)", + "IFERROR(0,D6/D4)", + "IFERROR(0,E6/E4)", + "IFERROR(0,F6/F4)", + "IFERROR(0,G6/G4)", + "IFERROR(0,H6/H4)", + "IFERROR(0,I6/I4)", + "IFERROR(0,J5:I4/J4:I3)", + "J6/J4", + "K6/K4", + "L6/L4", + "M6/M4", + "IFERROR(0,O6/O4)", + "IFERROR(0,P6/P4)", + "IFERROR(0,Q6/Q4)", + "IFERROR(0,R6/R4)", + "IFERROR(0,S6/S4)", + "IFERROR(0,T6/T4)", + "IFERROR(0,U6/U4)", + "IFERROR(0,V6/V4)", + "IFERROR(0,W6/W4)", + "IFERROR(0,X6/X4)", + "IFERROR(0,Y6/Y4)", + "IFERROR(0,Z6/Z4)", + "IFERROR(0,AA6/AA4)", + "IFERROR(0,AB6/AB4)", + "IFERROR(0,AC6/AC4)", + "IFERROR(0,AD6/AD4)", + "IFERROR(0,AE6/AE4)", + null, + "IFERROR(AVERAGEIF(B11:AF11, \"<>0\", B11:AF11),\"\")" + ], + [ + "二、结果数据", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B12:AF12, \"<>0\", B12:AF12),\"\")" + ], + [ + "入群数量", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 2, + 2, + 4, + null, + null, + null, + null, + null, + null, + null, + null, + 3, + null, + 2, + 4, + 4, + 2, + null, + null, + 3, + null, + "SUM(B13:AF13)" + ], + [ + "微信进粉人数", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 2, + null, + 2, + null, + null, + 1, + null, + null, + 2, + null, + "SUM(B14:AF14)" + ], + [ + "线下带人", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 7, + null, + null, + null, + null, + null, + null, + null, + 1, + null, + null + ], + [ + "三、成本", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B16:AF16, \"<>0\", B16:AF16),\"\")" + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B17:AF17, \"<>0\", B17:AF17),\"\")" + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "IFERROR(AVERAGEIF(B18:AF18, \"<>0\", B18:AF18),\"\")" + ], + [ + "单粉产值", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "【今日总结】\n1、自我剖析\n2、总结规律\n3、问题处理\n4、明日优化\t", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "订水", + null, + null, + null, + null, + null, + null + ], + [ + "派对录屏", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnfy49y66im469e87r64gw", + "text": "https://cunkebao.feishu.cn/minutes/obcnfy49y66im469e87r64gw", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnl5eyp19gdfd3335wlgg5", + "text": "https://cunkebao.feishu.cn/minutes/obcnl5eyp19gdfd3335wlgg5", + "type": "url" + } + ], + null, + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnni488okfmr42739t637o", + "text": "https://cunkebao.feishu.cn/minutes/obcnni488okfmr42739t637o", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnn951k5689hpw41wim9hz", + "text": "https://cunkebao.feishu.cn/minutes/obcnn951k5689hpw41wim9hz", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnowy725e23wz929298w73", + "text": "https://cunkebao.feishu.cn/minutes/obcnowy725e23wz929298w73", + "type": "url" + } + ], + [ + { + "cellPosition": null, + "link": "https://cunkebao.feishu.cn/minutes/obcnpli6e774tld1b5kh29e3", + "text": "https://cunkebao.feishu.cn/minutes/obcnpli6e774tld1b5kh29e3", + "type": "url" + } + ], + null, + null, + [ + { + "cellPosition": null, + "link": "https://yxmvgube9o2.feishu.cn/minutes/obcnrnf31f8536226557e6r4", + "text": "https://yxmvgube9o2.feishu.cn/minutes/obcnrnf31f8536226557e6r4", + "type": "url" + } + ], + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + "团队会议", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-678f1dc1a6a881919681d12009646189-xie-zuo/project", + "text": "文章:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + [ + { + "cellPosition": null, + "link": "https://chatgpt.com/g/g-p-690e975cd34481918630f00c94d28f0d-soulqie-pian/project", + "text": "生成切片:", + "type": "url" + } + ], + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ] +} \ No newline at end of file diff --git a/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_to_feishu_sheet.py b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_to_feishu_sheet.py index fb9ce66e..48a81ebe 100644 --- a/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_to_feishu_sheet.py +++ b/02_卡人(水)/水桥_平台对接/飞书管理/脚本/soul_party_to_feishu_sheet.py @@ -57,11 +57,13 @@ ROWS = { '119': [ '开派对初心 早上不影响老婆', 154, 50692, 446, 11, 110, 20, 3315, 26, 64 ], # 124场 2026-03-14:关闭页 95min/171成员/32最高/7新增/0礼物/0灵魂力,小助手 91min建房/169进房/8人均/48互动/6关注,妙记提炼主题 '124': [ '房主号设备与手机业务线', 95, 0, 171, 8, 48, 0, 0, 7, 32 ], + # 126场 2026-03-17:关闭页 123min/161成员/24最高/10新增/5礼物/9灵魂力,小助手 118min建房/155进房/10人均/63互动/9关注,主题来自派对标题 + '126': [ '分享最赚钱1个月AI', 123, 0, 161, 10, 63, 5, 9, 10, 24 ], } # 场次→按日期列填写时的日期(表头为当月日期 1~31) -SESSION_DATE_COLUMN = {'105': '20', '106': '21', '107': '23', '113': '2', '114': '3', '115': '4', '116': '5', '117': '6', '118': '7', '119': '8', '124': '14'} +SESSION_DATE_COLUMN = {'105': '20', '106': '21', '107': '23', '113': '2', '114': '3', '115': '4', '116': '5', '117': '6', '118': '7', '119': '8', '124': '14', '126': '17'} # 场次→月份(用于选择 2月/3月 等工作表标签,避免写入错月) -SESSION_MONTH = {'105': 2, '106': 2, '107': 2, '113': 3, '114': 3, '115': 3, '116': 3, '117': 3, '118': 3, '119': 3, '124': 3} +SESSION_MONTH = {'105': 2, '106': 2, '107': 2, '113': 3, '114': 3, '115': 3, '116': 3, '117': 3, '118': 3, '119': 3, '124': 3, '126': 3} # 派对录屏(飞书妙记)链接:场次 → 完整 URL,填表时写入「派对录屏」行对应列 # 从飞书妙记复制链接后填入,新场次需补全 @@ -74,6 +76,7 @@ PARTY_VIDEO_LINKS = { '118': 'https://cunkebao.feishu.cn/minutes/obcnaee1h83l1s169e3a18qp', '119': 'https://cunkebao.feishu.cn/minutes/obcnbrc925796a6u4c667931', '124': 'https://cunkebao.feishu.cn/minutes/obcne7q5dto13494k9a56881', + '126': 'https://cunkebao.feishu.cn/minutes/obcnha23t28fxfq8g8h5392d', } # 小程序当日运营数据:日期号 → {访问次数, 访客, 交易金额},填表时自动写入对应日期列 @@ -94,6 +97,7 @@ MINIPROGRAM_EXTRA_3 = { '7': {'访问次数': 0, '访客': 0, '交易金额': 0}, # 3月7日 118场 '8': {'访问次数': 0, '访客': 0, '交易金额': 0}, # 3月8日 119场 '14': {'访问次数': 0, '访客': 0, '交易金额': 0}, # 3月14日 124场 + '17': {'访问次数': 0, '访客': 0, '交易金额': 0}, # 3月17日 126场 } @@ -357,7 +361,7 @@ def main(): session = (sys.argv[1] if len(sys.argv) > 1 else '104').strip() row = ROWS.get(session) if not row: - print('❌ 未知场次,可用: 96, 97, 98, 99, 100, 103, 104, 105, 106, 107, 113, 114, 115, 116, 117, 118, 119, 124') + print('❌ 未知场次,可用: 96, 97, 98, 99, 100, 103, 104, 105, 106, 107, 113, 114, 115, 116, 117, 118, 119, 124, 126') sys.exit(1) token = load_token() or refresh_and_load_token() if not token: @@ -402,9 +406,9 @@ def main(): LABELS_GROUP = ['主题', '时长(分钟)', 'Soul推流人数', '进房人数', '人均时长(分钟)', '互动数量', '礼物', '灵魂力', '增加关注', '最高在线'] def _maybe_send_group(sess, raw_vals): - if sess not in ('105', '106', '107', '113', '114', '115', '116', '117', '118', '119', '124'): + if sess not in ('105', '106', '107', '113', '114', '115', '116', '117', '118', '119', '124', '126'): return - date_label = {'105': '2月20日', '106': '2月21日', '107': '2月23日', '113': '3月2日', '114': '3月3日', '115': '3月4日', '116': '3月5日', '117': '3月6日', '118': '3月7日', '119': '3月8日', '124': '3月14日'}.get(sess, sess + '场') + date_label = {'105': '2月20日', '106': '2月21日', '107': '2月23日', '113': '3月2日', '114': '3月3日', '115': '3月4日', '116': '3月5日', '117': '3月6日', '118': '3月7日', '119': '3月8日', '124': '3月14日', '126': '3月17日'}.get(sess, sess + '场') report_link = OPERATION_REPORT_LINK if sheet_id == SHEET_ID else f'https://cunkebao.feishu.cn/wiki/wikcnIgAGSNHo0t36idHJ668Gfd?sheet={sheet_id}' lines = [ '【Soul 派对运营报表】', @@ -415,7 +419,7 @@ def main(): for i, label in enumerate(LABELS_GROUP): val = raw_vals[i] if i < len(raw_vals) else '' lines.append(f'{label}:{val}') - src_date = {'105': '20260220', '106': '20260221', '107': '20260223', '113': '20260302', '114': '20260303', '115': '20260304', '116': '20260305', '117': '20260306', '118': '20260307', '119': '20260308', '124': '20260314'}.get(sess, '20260220') + src_date = {'105': '20260220', '106': '20260221', '107': '20260223', '113': '20260302', '114': '20260303', '115': '20260304', '116': '20260305', '117': '20260306', '118': '20260307', '119': '20260308', '124': '20260314', '126': '20260317'}.get(sess, '20260220') lines.append(f'数据来源:soul 派对 {sess}场 {src_date}.txt') msg = '\n'.join(lines) ok, _ = send_feishu_group_message(FEISHU_GROUP_WEBHOOK, msg) diff --git a/开发文档/10、使用手册/OpenClaw控制台/01-系统概述.md b/开发文档/10、使用手册/OpenClaw控制台/01-系统概述.md deleted file mode 100644 index d9e0adac..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/01-系统概述.md +++ /dev/null @@ -1,74 +0,0 @@ -## 01 系统概述 - -> [OpenClaw 控制台使用手册](README.md) > 系统概述 - ---- - -## 1.1 OpenClaw/Cloud Boot 在本机中的角色 - -OpenClaw 控制台可以理解为一层「本地 AI 网关 + 控制台」: - -- 向上:对接飞书、Cloud Boot(卡若消息中枢)、浏览器等「前端入口」。 -- 中间:作为 **统一网关**,负责会话管理、通道路由、使用量统计。 -- 向下:调用本机 **Ollama** 或云端 API(如 v0,间接使用 Claude 等模型)。 - -在你当前的配置中: - -- 主模型为 **`ollama/qwen2.5:3b`**(本机小模型),Provider 为 `ollama`。 -- 网关监听在本机 **18789 端口**。 -- 所有「通过 OpenClaw 的对话」最终都会落到本机 Ollama 或其他你配置的 Provider。 - ---- - -## 1.2 核心组件与数据流 - -整体数据流可以简化为三层: - -1. **入口层(Client)** - - 浏览器打开 `http://127.0.0.1:18789/config` 的控制面板进行对话。 - - 飞书/Cloud Boot 通过 `feishu_openclaw_bridge.py` 转发消息到网关。 - -2. **网关层(OpenClaw Gateway)** - - 进程来源:Docker 容器或 `openclaw gateway start` 命令。 - - 端口:`18789`。 - - 职责: - - 管理会话与对话历史; - - 按配置选择 Provider(如 `ollama`、`v0`)和具体模型; - - 记录使用情况(tokens、费用等,视 Provider 能力而定)。 - -3. **模型层(Providers)** - - 本机 Provider:`ollama`(`http://localhost:11434`),模型如 `qwen2.5:3b`。 - - 备选 Provider:`v0` 等云端 API(如启用)。 - ---- - -## 1.3 配置文件与持久化位置 - -关键配置写在本机用户目录下: - -| 项目 | 位置 | 说明 | -|------|------|------| -| OpenClaw 主配置 | `~/.openclaw/openclaw.json` | 包含网关端口、默认 Provider、默认模型等。 | -| clawdbot 源码 | `开发/8、小工具/clawdbot` | 包含 UI 前端、飞书桥接脚本等。 | -| 飞书桥接脚本 | `feishu_openclaw_bridge.py` | 将飞书消息转成 OpenClaw 可理解的请求。 | - -网关重启不会丢失配置,因为主要设置保存在上述配置文件中。 - ---- - -## 1.4 与卡若AI/Cloud Boot 的关系 - -- 卡若AI 是「大脑与规则集合」; -- OpenClaw 是「本地网关与路由器」; -- Cloud Boot/飞书机器人是「对外入口」。 - -典型链路可以描述为: - -> 飞书消息/Cloud Boot → `feishu_openclaw_bridge.py` → OpenClaw 网关(18789) → Provider(Ollama/qwen2.5:3b 或 v0)→ 返回结果 → 飞书/Cloud Boot 展示 - ---- - -上一篇:无 | 下一篇:[02 快速入门](02-快速入门.md) - -返回 [章节目录](README.md) - diff --git a/开发文档/10、使用手册/OpenClaw控制台/02-快速入门.md b/开发文档/10、使用手册/OpenClaw控制台/02-快速入门.md deleted file mode 100644 index 06e9890b..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/02-快速入门.md +++ /dev/null @@ -1,77 +0,0 @@ -## 02 快速入门 - -> [OpenClaw 控制台使用手册](README.md) > 快速入门 - ---- - -## 2.1 前置条件检查 - -在使用前,请确保: - -| 项目 | 要求 | 检查方法 | -|------|------|----------| -| 操作系统 | macOS(当前本机环境) | 无需额外操作 | -| clawdbot 仓库 | 已存在 | 路径为 `开发/8、小工具/clawdbot` | -| 网关 | 已经在 18789 端口运行(推荐) | 访问 `http://127.0.0.1:18789/health` 应返回 200 | -| Ollama | 已安装并运行 | 终端执行 `curl -s http://localhost:11434/api/tags` 能返回模型列表 | - ---- - -## 2.2 启动网关与控制面板 - -有两种常见方式: - -### 方式一:使用已有网关(推荐) - -1. 确认网关已启动(Docker 或其他方式)。 -2. 在终端或 Spotlight 中打开控制面板: - - ```bash - open http://127.0.0.1:18789/config - ``` - -3. 浏览器中应出现 OpenClaw 控制台首页。 - -### 方式二:使用 openclaw 命令启动网关 - -当 18789 端口没有服务时,可以手动启动: - -```bash -openclaw gateway start -# 或指定端口(如需): -openclaw gateway --port 18789 -``` - -然后浏览器访问: - -```text -http://127.0.0.1:18789/config -``` - ---- - -## 2.3 验证 AI 模型是否可用 - -1. 在浏览器中打开控制面板。 -2. 新建一个会话,发送一条简单消息,例如: - - “你现在使用的是哪个模型?” -3. 若返回正常回答且使用量统计中可以看到 `provider: ollama`、`model: ollama/qwen2.5:3b`,说明当前本地模型工作正常。 - -如对模型有疑问,可在后续章节中查看「模型与 Provider 配置」。 - ---- - -## 2.4 常用地址速查 - -| 功能 | 地址 | -|------|------| -| 控制面板 | `http://127.0.0.1:18789/config` | -| 健康检查 | `http://127.0.0.1:18789/health` | -| 飞书桥接状态(若启用) | `http://127.0.0.1:8888/` | - ---- - -上一篇:[01 系统概述](01-系统概述.md) | 下一篇:[03 界面与基础操作](03-界面与基础操作.md) - -返回 [章节目录](README.md) - diff --git a/开发文档/10、使用手册/OpenClaw控制台/03-界面与基础操作.md b/开发文档/10、使用手册/OpenClaw控制台/03-界面与基础操作.md deleted file mode 100644 index 552c5b30..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/03-界面与基础操作.md +++ /dev/null @@ -1,68 +0,0 @@ -## 03 界面与基础操作 - -> [OpenClaw 控制台使用手册](README.md) > 界面与基础操作 - ---- - -## 3.1 控制面板首页结构 - -打开 `http://127.0.0.1:18789/config` 后,主要区域通常包括: - -| 区域 | 作用 | -|------|------| -| 左侧导航栏 | 切换「聊天」「概述」「频道」「会话」「技能」「配置」「日志」等模块。 | -| 上方会话栏 | 显示当前选中的会话和快速切换入口。 | -| 右侧主区域 | 展示聊天内容、使用统计、配置表单等。 | - -不同版本 UI 会略有差异,但核心导航和模块名称基本一致。 - ---- - -## 3.2 聊天模块 - -1. 在左侧选择「聊天」或类似入口。 -2. 右侧主区域显示消息记录与输入框。 -3. 常用操作: - - 输入消息并回车发送; - - 重命名会话; - - 在使用统计中查看当前会话的 Provider 与模型。 - -> 提示:如果你想确认当前对话走的是本地 Ollama,留意使用信息中的 `provider: ollama` 和 `model: ollama/qwen2.5:3b`。 - ---- - -## 3.3 配置模块(Models) - -1. 左侧进入「配置」→「Models」(AI 模型配置与提供商)。 -2. 在这里你可以: - - 查看当前默认 Provider 和默认模型; - - 为不同 Provider(如 `ollama`、`v0`)配置 baseUrl、API Key 等; - - 设置主模型与备用模型。 - -详细的模型配置说明见「04 模型与 Provider 配置」。 - ---- - -## 3.4 频道与技能模块(与 Cloud Boot/飞书相关) - -1. 「频道」模块:配置不同来源的消息通道,例如飞书、Cloud Boot 等。 -2. 「技能」模块:启用或禁用某些技能脚本、查看技能状态。 - -这些模块与 `feishu_openclaw_bridge.py` 和 Cloud Boot 的集成配合使用,具体操作在「05 飞书与 Cloud Boot 集成」中说明。 - ---- - -## 3.5 日志与排查入口 - -1. 在左侧选择「日志」或类似入口,可以查看网关运行时的错误和请求记录。 -2. 当出现模型调用失败、Provider 报错等问题时,优先查看这里的最新日志行,以快速定位是: - - Provider 配置问题; - - 网络或 API Key 问题; - - 本机 Ollama 未启动等。 - ---- - -上一篇:[02 快速入门](02-快速入门.md) | 下一篇:[04 模型与 Provider 配置](04-模型与Provider配置.md) - -返回 [章节目录](README.md) - diff --git a/开发文档/10、使用手册/OpenClaw控制台/04-模型与Provider配置.md b/开发文档/10、使用手册/OpenClaw控制台/04-模型与Provider配置.md deleted file mode 100644 index 8c40bc34..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/04-模型与Provider配置.md +++ /dev/null @@ -1,81 +0,0 @@ -## 04 模型与 Provider 配置 - -> [OpenClaw 控制台使用手册](README.md) > 模型与 Provider 配置 - ---- - -## 4.1 当前默认模型与 Provider(本机状态) - -根据 `clawdbot/references/Claw中Ollama配置说明.md`,当前本机默认配置为: - -| 项 | 值 | -|----|----| -| 主模型 | `ollama/qwen2.5:3b` | -| Provider | 内置 `ollama`(本机 `http://localhost:11434`) | -| 认证方式 | `auth.profiles["ollama:local"]`,`mode: "api_key"` | -| 配置文件 | `~/.openclaw/openclaw.json` | - -本机已存在模型:`qwen2.5:1.5b`、`qwen2.5:3b`、`nomic-embed-text:latest`,默认用 `qwen2.5:3b`。 - ---- - -## 4.2 在控制面板中切换 Ollama 模型 - -1. 打开 `http://127.0.0.1:18789/config`。 -2. 左侧进入「配置」→「Models」。 -3. 在「代理默认模型」处选择或填写其中一种: - - `ollama/qwen2.5:3b`(当前默认) - - `ollama/qwen2.5:1.5b` - - `ollama/nomic-embed-text:latest`(一般用于嵌入,不建议当主对话模型) -4. 保存配置,新建的会话将使用新模型。 - -> 注意:如果在会话中没有立刻感知到变化,请新建会话再测试。 - ---- - -## 4.3 确保 Ollama 服务运行 - -如果模型调用失败,首先确认 Ollama 是否在本机运行: - -```bash -curl -s http://localhost:11434/api/tags -``` - -预期结果:返回一个包含模型列表的 JSON。如果无返回或报错: - -- 尝试从启动项中打开 Ollama 应用; -- 或在菜单中选择「Open Ollama」并确认服务已启动。 - ---- - -## 4.4 配置 v0/Claude 作为备选 Provider(可选) - -当你希望在本地模型之外,保留一个云端模型作为后备时,可以添加 v0 Provider: - -1. 在控制面板「配置」→「Models」中新增一个 Provider: - - 基础 URL:`https://api.v0.dev/v1` - - 模型 ID:`v0-1.5-md` 或 `v0-1.5-lg`(不要再使用 `v0-1.0-md`) - - API 密钥:你的 v0 secret。 -2. 将该 Provider 标记为 **fallback**,而主 Provider 仍保持为 `ollama` 的 `qwen2.5:3b`。 - -数据流将变为: - -- 正常情况下优先使用本机 `ollama/qwen2.5:3b`。 -- 当本机调用失败时,由网关自动尝试 fallback Provider(如 v0,对接 Claude 等)。 - ---- - -## 4.5 常见配置错误与排查 - -| 症状 | 可能原因 | 排查建议 | -|------|----------|----------| -| 所有对话都报超时或 500 | Ollama 未启动,或 baseUrl 配错 | 使用 `curl` 测本机接口;检查 `~/.openclaw/openclaw.json` 中的 Provider 配置。 | -| 仅部分会话报错 | 某个 Provider 或模型配置不完整 | 在「配置 → Models」中检查该 Provider 的 baseUrl、API Key、模型 ID。 | -| 使用量统计中 Provider 一直是 unknown | 会话未正确记录 Provider 字段 | 升级 OpenClaw 版本或检查日志,确认请求是否被中间层改写。 | - ---- - -上一篇:[03 界面与基础操作](03-界面与基础操作.md) | 下一篇:[05 飞书与 Cloud Boot 集成](05-飞书与CloudBoot集成.md) - -返回 [章节目录](README.md) - diff --git a/开发文档/10、使用手册/OpenClaw控制台/05-飞书与CloudBoot集成.md b/开发文档/10、使用手册/OpenClaw控制台/05-飞书与CloudBoot集成.md deleted file mode 100644 index 6b20e1a6..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/05-飞书与CloudBoot集成.md +++ /dev/null @@ -1,74 +0,0 @@ -## 05 飞书与 Cloud Boot 集成 - -> [OpenClaw 控制台使用手册](README.md) > 飞书与 Cloud Boot 集成 - ---- - -## 5.1 集成目标 - -本部分说明 Cloud Boot/飞书 发送的一条消息,如何通过本机的 OpenClaw 网关与 Ollama 模型完成应答: - -> 飞书/Cloud Boot → `feishu_openclaw_bridge.py` → OpenClaw 网关(18789)→ Provider(Ollama/qwen2.5:3b 或其他)→ 返回结果 → 飞书/Cloud Boot 展示 - -这样,外部看到的是 Cloud Boot/飞书机器人,实际「大脑」运行在本机 OpenClaw + Ollama 上。 - ---- - -## 5.2 关键组件与文件 - -| 组件 | 位置 | 作用 | -|------|------|------| -| 飞书桥接脚本 | `开发/8、小工具/clawdbot/feishu_openclaw_bridge.py` | 接收飞书回调,转发到 OpenClaw 网关。 | -| 一键启动脚本 | `开发/8、小工具/clawdbot/start_feishu_frpc.sh` | 启动飞书桥接服务与 frpc。 | -| frpc 配置 | `开发/8、小工具/clawdbot/frp_tunnel/client/frpc.toml` | 配置内网穿透,将本机服务暴露给 Cloud Boot/外网。 | -| OpenClaw 网关 | `http://127.0.0.1:18789/` | 统一对接 Provider 的网关。 | - ---- - -## 5.3 启动飞书桥接与 frpc - -在本机终端执行: - -```bash -cd /Users/karuo/Documents/开发/8、小工具/clawdbot -./start_feishu_frpc.sh -``` - -脚本会完成: - -1. 启动一个 FastAPI/Uvicorn 服务,运行 `feishu_openclaw_bridge.py`; -2. 启动 `frpc`,根据 `frpc.toml` 将本机端口映射到外网,以便 Cloud Boot/飞书可以访问。 - -> 注意:首次使用前需要根据你的服务器与域名情况,正确填写 `frpc.toml` 与飞书应用配置(回调 URL 等)。 - ---- - -## 5.4 消息流转示意 - -以一条来自飞书的消息为例: - -1. 用户在飞书/Cloud Boot 中发送消息; -2. 飞书服务器将消息 POST 到你配置的回调 URL; -3. 该 URL 实际指向 `feishu_openclaw_bridge.py` 提供的 HTTP 接口; -4. 桥接脚本将消息转换为 OpenClaw 支持的请求格式(会话 ID、角色、文本等); -5. 请求发送到本机 `http://127.0.0.1:18789` 的 OpenClaw 网关; -6. 网关根据当前模型配置,将请求路由到 Provider(默认是 `ollama/qwen2.5:3b`); -7. 得到回复后,网关将结果返回给桥接脚本,再由桥接脚本回传给飞书; -8. 最终,用户在 Cloud Boot/飞书中看到 AI 的回复。 - ---- - -## 5.5 常见问题与排查建议 - -| 症状 | 可能原因 | 排查建议 | -|------|----------|----------| -| 飞书回调 500 或超时 | 桥接服务未启动或端口被防火墙拦截 | 确认 `start_feishu_frpc.sh` 是否运行;检查本机 8888 端口和 frpc 日志。 | -| 飞书提示签名错误 | 飞书应用密钥或校验 Token 配置不一致 | 对照飞书开发者后台,检查 `feishu_openclaw_bridge.py` 中的配置。 | -| Cloud Boot 能打开界面但无回复 | OpenClaw 18789 未运行或 Provider 报错 | 访问 `http://127.0.0.1:18789/health`;查看 OpenClaw 日志与模型配置。 | - ---- - -上一篇:[04 模型与 Provider 配置](04-模型与Provider配置.md) | 下一篇:[06 常见问题(FAQ)](06-常见问题.md) - -返回 [章节目录](README.md) - diff --git a/开发文档/10、使用手册/OpenClaw控制台/06-常见问题.md b/开发文档/10、使用手册/OpenClaw控制台/06-常见问题.md deleted file mode 100644 index 4cc807df..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/06-常见问题.md +++ /dev/null @@ -1,77 +0,0 @@ -## 06 常见问题(FAQ) - -> [OpenClaw 控制台使用手册](README.md) > 常见问题(FAQ) - ---- - -## 6.1 控制面板打不开怎么办? - -**现象**:访问 `http://127.0.0.1:18789/config` 显示无法连接。 - -可能原因与处理: - -| 原因 | 处理方式 | -|------|----------| -| 网关未启动 | 按「02 快速入门」中的方式启动网关:`openclaw gateway start` 或启动相关 Docker 容器。 | -| 端口被占用或改动 | 确认实际网关端口(例如配置为其他端口),按实际端口访问;或调整为 18789。 | -| 本机防火墙限制 | 临时关闭或放行本地 18789 端口后重试。 | - ---- - -## 6.2 对话返回 500 或报错信息 - -**现象**:在控制面板中对话报 500,或 Cloud Boot 上看到「系统错误」。 - -排查顺序: - -1. 查看 OpenClaw 的「日志」模块,找到最近一条错误。 -2. 根据错误信息判断是 Provider 报错还是网关自身异常。 -3. 若是 v0 相关错误: - - 检查 baseUrl 是否为 `https://api.v0.dev/v1`; - - 检查模型 ID 是否为 `v0-1.5-md` 或 `v0-1.5-lg`; - - 检查 API Key 是否有效,Billing/配额是否正常。 -4. 若是 Ollama 报错: - - 使用 `curl -s http://localhost:11434/api/tags` 确认服务与模型是否正常。 - ---- - -## 6.3 模型似乎没变,仍然是旧模型 - -**现象**:在「配置 → Models」中修改了默认模型,但对话中感觉没变化。 - -处理方式: - -- 修改默认模型后,**新建一个会话** 测试; -- 在使用统计或调试信息中确认 `model:` 字段是否为预期值; -- 如仍无变化,检查 `~/.openclaw/openclaw.json` 中是否有覆盖默认配置的字段。 - ---- - -## 6.4 飞书/Cloud Boot 收不到回复 - -**现象**:Cloud Boot/飞书消息发送成功,但长时间没有任何回复。 - -排查建议: - -1. 确认 `start_feishu_frpc.sh` 是否已执行,桥接服务是否在运行; -2. 在浏览器访问 `http://127.0.0.1:8888/`(若有提供状态页)查看桥接健康状态; -3. 检查 frpc 日志,确认外网穿透是否正常; -4. 检查飞书开发者后台中配置的回调 URL 与签名设置是否与本地配置匹配; -5. 在 OpenClaw 日志中查看是否有收到对应请求。 - ---- - -## 6.5 如何确认当前到底用的是本机小模型还是云端模型? - -- 在控制面板中查看会话的使用信息: - - 若显示 `provider: ollama` 且 `model: ollama/qwen2.5:3b`,则在用本机小模型。 - - 若显示 v0 或其他云端 Provider,则为云端模型。 -- 也可以直接在对话中提问,例如: - - “你当前使用的 Provider 和模型名称是什么?” - ---- - -上一篇:[05 飞书与 Cloud Boot 集成](05-飞书与CloudBoot集成.md) | 下一篇:无 - -返回 [章节目录](README.md) - diff --git a/开发文档/10、使用手册/OpenClaw控制台/README.md b/开发文档/10、使用手册/OpenClaw控制台/README.md deleted file mode 100644 index 049880ea..00000000 --- a/开发文档/10、使用手册/OpenClaw控制台/README.md +++ /dev/null @@ -1,33 +0,0 @@ -## OpenClaw 控制台使用手册 - -**版本**:v1.0 | **更新日期**:2026年3月 | **适用环境**:本机 macOS + Docker/OpenClaw 网关 + Ollama - -> 本手册介绍本地 OpenClaw 控制台(Cloud Boot)的工作原理、启动方式、模型配置、与飞书/Cloud Boot 的集成和常见问题。 - ---- - -## 章节目录 - -| 编号 | 章节 | 文件 | 说明 | -|------|------|------|------| -| 01 | 系统概述 | [01-系统概述.md](01-系统概述.md) | OpenClaw 的角色、组件与整体架构 | -| 02 | 快速入门 | [02-快速入门.md](02-快速入门.md) | 启动网关与控制台、基本健康检查 | -| 03 | 界面与基础操作 | [03-界面与基础操作.md](03-界面与基础操作.md) | 控制台主要页面与常用操作说明 | -| 04 | 模型与 Provider 配置 | [04-模型与Provider配置.md](04-模型与Provider配置.md) | Ollama、本地模型与 v0/云端模型配置 | -| 05 | 飞书与 Cloud Boot 集成 | [05-飞书与CloudBoot集成.md](05-飞书与CloudBoot集成.md) | 飞书桥接脚本、frpc 与 Cloud Boot 调用链路 | -| 06 | 常见问题(FAQ) | [06-常见问题.md](06-常见问题.md) | 启动失败、模型报错、HTTP 500 等排查 | - ---- - -## 系统访问入口与支持 - -- 控制面板入口:`http://127.0.0.1:18789/config` -- 健康检查:`http://127.0.0.1:18789/health` -- 本地项目路径:`开发/8、小工具/clawdbot` - -如需扩展本手册(新增章节/截图),请遵守 `usage-manual-writer` 的目录与命名规范。 - ---- - -返回 [使用手册总目录](../README.md) - diff --git a/开发文档/10、使用手册/README.md b/开发文档/10、使用手册/README.md deleted file mode 100644 index d606cb6b..00000000 --- a/开发文档/10、使用手册/README.md +++ /dev/null @@ -1,24 +0,0 @@ -## 使用手册总目录 - -> 本目录汇总卡若AI 相关系统的使用手册入口。 - -**版本**:v1.0.0 | **更新日期**:2026年3月 - ---- - -## 系统列表 - -| 系统 | 手册目录 | 说明 | -|------|----------|------| -| OpenClaw 控制台(Cloud Boot) | [OpenClaw控制台/README.md](OpenClaw控制台/README.md) | 本地 AI 网关与控制台,用于统一管理模型与通道(含 Cloud Boot/飞书桥接)。 | - ---- - -## 手册编写规范(摘要) - -- 每个系统使用独立子目录(如 `OpenClaw控制台/`)。 -- 每个目录必须包含 `README.md` 作为章节索引。 -- 章节文件统一使用 `{两位数}-{章节名}.md` 命名,如 `01-系统概述.md`。 -- 内容中优先使用表格描述配置项、字段和状态说明。 -- 截图统一放在上级目录的 `截图/` 中,通过相对路径引用。 - diff --git a/运营中枢/工作台/00_账号与API索引.md b/运营中枢/工作台/00_账号与API索引.md index e125e6e8..4c604262 100644 --- a/运营中枢/工作台/00_账号与API索引.md +++ b/运营中枢/工作台/00_账号与API索引.md @@ -15,71 +15,90 @@ ## 目录 -| 章节 | 内容 | -|------|------| -| 一 | 云服务与 API | -| 二 | 数据库 | -| 三 | 支付(微信/支付宝) | -| 四 | 邮箱 | -| 五 | **本机服务器(宝塔/SSH)** | -| 六 | 飞书 Token | -| 七 | 小程序 | -| 八 | **本机与网站账号密码**(浏览器/钥匙串 + 填写表) | -| 八b | **网络设备**(路由器/AP/交换机) | -| 九 | 本机其他凭证文件位置 | -| 十 | 联系方式 | + +| 章节 | 内容 | +| --- | ---------------------------- | +| 一 | 云服务与 API | +| 二 | 数据库 | +| 三 | 支付(微信/支付宝) | +| 四 | 邮箱 | +| 五 | **本机服务器(宝塔/SSH)** | +| 六 | 飞书 Token | +| 七 | 小程序 | +| 八 | **本机与网站账号密码**(浏览器/钥匙串 + 填写表) | +| 八b | **网络设备**(路由器/AP/交换机) | +| 九 | 本机其他凭证文件位置 | +| 十 | 联系方式 | + --- ## 一、云服务与 API(明文) ### GitHub -| 项 | 值 | -|----|-----| + + +| 项 | 值 | +| ----- | ------------------------------------------ | | Token | `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` | + ### 腾讯云 -| 项 | 值 | -|----|-----| -| APPID | `1251077262` | -| SecretId(密钥) | `AKIDT160iKm15xc4IJ7i5EPAmBNOCpFUYS9g` | -| SecretKey | `c3JRegbJo7E8pIagaIo8HvUr1yhIxdCe` | -| (历史 SecretId) | AKIDjc6yO3nPeOuK2OKsJPBBVbTiiz0aPNHl | + + +| 项 | 值 | +| ------------- | -------------------------------------- | +| APPID | `1251077262` | +| SecretId(密钥) | `AKIDT160iKm15xc4IJ7i5EPAmBNOCpFUYS9g` | +| SecretKey | `c3JRegbJo7E8pIagaIo8HvUr1yhIxdCe` | +| (历史 SecretId) | AKIDjc6yO3nPeOuK2OKsJPBBVbTiiz0aPNHl | + ### 阿里云 -| 项 | 值 | -|----|-----| -| AccessKey ID | `LTAI5t9zkiWmFtHG8qmtdysW` | -| Secret | `xxjXnZGLNvA2zDkj0aEBSQm3XZAaro` | + + +| 项 | 值 | +| ------------ | -------------------------------- | +| AccessKey ID | `LTAI5t9zkiWmFtHG8qmtdysW` | +| Secret | `xxjXnZGLNvA2zDkj0aEBSQm3XZAaro` | + ### v0.dev -| 项 | 值 | -|----|-----| -| URL | `https://api.v0.dev/v1` | -| Secret | `v1:C6mw1SlvXsJdlO4VFEXSQEVf:vcp_62nyAVqetvvasioUqYNCXVPPGK2DRQIaTX85dFCu5PTXpBSaob3m4OEq`(当前使用) | -| Secret(zhengzhiqun@vip.qq.com 账号) | `v1:t2m5rEmVb8eBvH7I4IAlP4jU:vcp_1p5UWQZ9o8Mh6YuZlFiUrrzvgUhvJFB6QgzjKYkf09XJSZ6iu10ZgFzZ` | -| 模型 | `claude-opus`(接口侧用 v0-1.5-md 等) | -| 检测 | 运行 `bash 运营中枢/工作台/scripts/test_v0_api.sh`:先验 Key(/models),再验 completions;若 Key 有效但 completions 500,到 [v0.app](https://v0.app) 检查 Billing / Usage / usage-based billing;ClawX 默认主模型为 Ollama,确保可用 | + + +| 项 | 值 | +| ------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| URL | `https://api.v0.dev/v1` | +| Secret | `v1:C6mw1SlvXsJdlO4VFEXSQEVf:vcp_62nyAVqetvvasioUqYNCXVPPGK2DRQIaTX85dFCu5PTXpBSaob3m4OEq`(当前使用) | +| Secret([zhengzhiqun@vip.qq.com](mailto:zhengzhiqun@vip.qq.com) 账号) | `v1:t2m5rEmVb8eBvH7I4IAlP4jU:vcp_1p5UWQZ9o8Mh6YuZlFiUrrzvgUhvJFB6QgzjKYkf09XJSZ6iu10ZgFzZ` | +| 模型 | `claude-opus`(接口侧用 v0-1.5-md 等) | +| 检测 | 运行 `bash 运营中枢/工作台/scripts/test_v0_api.sh`:先验 Key(/models),再验 completions;若 Key 有效但 completions 500,到 [v0.app](https://v0.app) 检查 Billing / Usage / usage-based billing;ClawX 默认主模型为 Ollama,确保可用 | ### n8n(本机工作流 API) -| 项 | 值 | -|----|-----| -| 实例地址 | http://localhost:5678 | + + +| 项 | 值 | +| ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 实例地址 | [http://localhost:5678](http://localhost:5678) | | API Key(JWT) | `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJlOWM2NjFjNS1iZGE2LTRiNjctYmYxNi1iYTA3MDUzYmY2NTIiLCJpc3MiOiJuOG4iLCJhdWQiOiJwdWJsaWMtYXBpIiwianRpIjoiOThiNWQ4OWQtMjA1ZS00NDVhLWE0OGEtYWMzYzMyMmQzYmZmIiwiaWF0IjoxNzcyNjE2NzgxfQ.UU34FESy9AAzsZc2_NCv_kDLN3xZrFO5JAKMMHCyW2w` | -| 请求头 | `X-N8N-API-KEY: <上表 JWT>` | -| 说明 | 本机 n8n 工作流 Public API 认证;用于创建工作流、执行工作流等,详见 n8n 文档 API 章节 | +| 请求头 | `X-N8N-API-KEY: <上表 JWT>` | +| 说明 | 本机 n8n 工作流 Public API 认证;用于创建工作流、执行工作流等,详见 n8n 文档 API 章节 | + ### Gitea(CKB NAS 自建 Git) -| 项 | 值 | -|----|-----| -| 地址 | http://open.quwanzhi.com:3000 | -| 账号 | `fnvtk` | -| 密码 | `Zhiqun1984` | -| **HTTPS 推送** | `http://fnvtk:Zhiqun1984@open.quwanzhi.com:3000/fnvtk/{repo}.git` | -| HTTPS 访问 | http://open.quwanzhi.com:3000/fnvtk/{repo} | -| 新建仓库 API | `curl -u fnvtk:Zhiqun1984 -X POST http://open.quwanzhi.com:3000/api/v1/user/repos -H "Content-Type: application/json" -d '{"name":"xxx","description":"","private":false}'` | -| 说明 | 必须用 API 或 Web 创建仓库才能显示在界面;禁止 SSH mkdir+init;推送统一用 HTTPS | + + +| 项 | 值 | +| ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 地址 | [http://open.quwanzhi.com:3000](http://open.quwanzhi.com:3000) | +| 账号 | `fnvtk` | +| 密码 | `Zhiqun1984` | +| **HTTPS 推送** | `http://fnvtk:Zhiqun1984@open.quwanzhi.com:3000/fnvtk/{repo}.git` | +| HTTPS 访问 | [http://open.quwanzhi.com:3000/fnvtk/{repo}](http://open.quwanzhi.com:3000/fnvtk/{repo}) | +| 新建仓库 API | `curl -u fnvtk:Zhiqun1984 -X POST http://open.quwanzhi.com:3000/api/v1/user/repos -H "Content-Type: application/json" -d '{"name":"xxx","description":"","private":false}'` | +| 说明 | 必须用 API 或 Web 创建仓库才能显示在界面;禁止 SSH mkdir+init;推送统一用 HTTPS | + --- @@ -90,63 +109,79 @@ > **规则**:本机所有项目共用**同一个 MongoDB 实例**,不新增新实例。详见《本机数据库统一规则》。 > **玩值电竞等需连本机 27017 时**:账号密码从此表取,连接串格式见下表。 -| 项 | 值 | -|----|-----| -| 连接串(无认证) | `mongodb://localhost:27017` | -| 连接串(有认证时) | `mongodb://admin:admin123@localhost:27017?authSource=admin`(库名在应用内指定,如玩值电竞为 `wanzhi_esports`) | -| 账号 | `admin` | -| 密码 | `admin123` | -| 连接串(有认证,完整示例) | `mongodb://admin:admin123@localhost:27017?authSource=admin` | -| 玩值电竞库名 | `wanzhi_esports`(Compass/客户端里显示此英文名,非「玩值」中文;玩值电竞App 使用本实例下该库) | + +| 项 | 值 | +| ------------- | --------------------------------------------------------------------------------------------- | +| 连接串(无认证) | `mongodb://localhost:27017` | +| 连接串(有认证时) | `mongodb://admin:admin123@localhost:27017?authSource=admin`(库名在应用内指定,如玩值电竞为 `wanzhi_esports`) | +| 账号 | `admin` | +| 密码 | `admin123` | +| 连接串(有认证,完整示例) | `mongodb://admin:admin123@localhost:27017?authSource=admin` | +| 玩值电竞库名 | `wanzhi_esports`(Compass/客户端里显示此英文名,非「玩值」中文;玩值电竞App 使用本实例下该库) | + 本机开发时各项目设置 `MONGODB_URI` 为上表连接串(有认证时用 `mongodb://账号:密码@localhost:27017?authSource=admin`),库名在应用内指定(如玩值电竞为 `wanzhi_esports`)。 ### 卡若私域数据库 -| 项 | 值 | -|----|-----| -| 主机 | `10.88.182.62:3306` | -| 账号 | `root` | -| 密码 | `Vtka(agu)-1` | + + +| 项 | 值 | +| --- | ------------------- | +| 主机 | `10.88.182.62:3306` | +| 账号 | `root` | +| 密码 | `Vtka(agu)-1` | + ### 腾讯云数据库 -| 项 | 值 | -|----|-----| -| 地址 | `56b4c23f6853c.gz.cdb.myqcloud.com:14413` | -| 账号 | `cdb_outerroot` | -| 密码 | `Zhiqun1984` | + + +| 项 | 值 | +| --- | ----------------------------------------- | +| 地址 | `56b4c23f6853c.gz.cdb.myqcloud.com:14413` | +| 账号 | `cdb_outerroot` | +| 密码 | `Zhiqun1984` | + --- ## 三、支付(明文) ### 微信支付 -| 项 | 值 | -|----|-----| -| 网站 AppID | `wx432c93e275548671` | -| 网站 AppSecret | `25b7e7fdb7998e5107e242ebb6ddabd0` | -| 服务号 AppID | `wx7c0dbf34ddba300d` | + + +| 项 | 值 | +| ------------- | ---------------------------------- | +| 网站 AppID | `wx432c93e275548671` | +| 网站 AppSecret | `25b7e7fdb7998e5107e242ebb6ddabd0` | +| 服务号 AppID | `wx7c0dbf34ddba300d` | | 服务号 AppSecret | `f865ef18c43dfea6cbe3b1f1aebdb82e` | -| MP 文件验证码 | `SP8AfZJyAvprRORT` | -| 商户号 | `1318592501` | +| MP 文件验证码 | `SP8AfZJyAvprRORT` | +| 商户号 | `1318592501` | | 微信商户平台 API 密钥 | `wx3e31b068be59ddc131b068be59ddc2` | + ### 支付宝 -| 项 | 值 | -|----|-----| -| Pid | `2088511801157159` | + + +| 项 | 值 | +| ------ | ---------------------------------- | +| Pid | `2088511801157159` | | MD5 密钥 | `lz6ey1h3kl9zqkgtjz3avb5gk37wzbrp` | -| 账户 | `zhengzhiqun@vip.qq.com` | +| 账户 | `zhengzhiqun@vip.qq.com` | + --- ## 四、邮箱(明文) -| 项 | 值 | -|----|-----| -| 账号 | `zhiqun` | -| 密码 | `#vtk();1984` | + +| 项 | 值 | +| ---- | ----------------------------------------------------------------- | +| 账号 | `zhiqun` | +| 密码 | `#vtk();1984` | | 邮箱地址 | `zhiqun@qq.com` / `zhengzhiqun@vip.qq.com` / `15880802661@qq.com` | + --- ## 五、本机服务器(宝塔 / SSH)(明文) @@ -155,43 +190,53 @@ ### 服务器资产 -| 名称 | IP | 配置 | 用途 | 宝塔面板地址 | -|------|-----|------|------|--------------| -| 存客宝 | 42.194.245.239 | 2核16G 50M | 私域银行业务 | https://42.194.245.239:9988 | -| kr宝塔 | 43.139.27.93 | 2核4G 5M | Node 项目主力 | https://43.139.27.93:9988 | + +| 名称 | IP | 配置 | 用途 | 宝塔面板地址 | +| ---- | -------------- | --------- | --------- | ---------------------------------------------------------- | +| 存客宝 | 42.194.245.239 | 2核16G 50M | 私域银行业务 | [https://42.194.245.239:9988](https://42.194.245.239:9988) | +| kr宝塔 | 43.139.27.93 | 2核4G 5M | Node 项目主力 | [https://43.139.27.93:9988](https://43.139.27.93:9988) | + ### 阿猫/婼瑄 MacBook(SSH) -| 项 | 值 | -|----|-----| -| 主机 | `macbook.quwanzhi.com` | -| 端口 | `22203` | -| 账号 | `kr` | -| 密码 | `key123456` | + +| 项 | 值 | +| ---- | -------------------------------------- | +| 主机 | `macbook.quwanzhi.com` | +| 端口 | `22203` | +| 账号 | `kr` | +| 密码 | `key123456` | | 连接命令 | `ssh -p 22203 kr@macbook.quwanzhi.com` | + ### SSH 登录(root) -| 项 | 值 | -|----|-----| -| 密码(通用) | `Zhiqun1984` | + +| 项 | 值 | +| -------- | -------------------------------- | +| 密码(通用) | `Zhiqun1984` | | 示例(kr宝塔) | `ssh -p 22022 root@43.139.27.93` | + ### 宝塔面板登录(kr宝塔为例) -| 项 | 值 | -|----|-----| -| 地址 | https://43.139.27.93:9988 | -| 账号 | `ckb` | -| 密码 | `zhiqun1984` | + +| 项 | 值 | +| --- | ------------------------------------------------------ | +| 地址 | [https://43.139.27.93:9988](https://43.139.27.93:9988) | +| 账号 | `ckb` | +| 密码 | `zhiqun1984` | + ### 宝塔 API 密钥 -| 服务器 | API 密钥 | -|--------|----------| -| 存客宝 | `TNKjqDv5N1QLOU20gcmGVgr82Z4mXzRi` | + +| 服务器 | API 密钥 | +| ---- | ---------------------------------- | +| 存客宝 | `TNKjqDv5N1QLOU20gcmGVgr82Z4mXzRi` | | kr宝塔 | `qcWubCdlfFjS2b2DMT1lzPFaDfmv1cBT` | + --- ## 六、飞书 Token(明文) @@ -201,31 +246,35 @@ 所有飞书操作**优先**按以下顺序获取权限: 1. **APP_ID + APP_SECRET → tenant_access_token**(首选) - - `POST https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal` - - 适用于:文档、多维表格、日历、群聊、消息等 Open API - - 不适用于:妙记转写正文(返回 2091005 权限不足) + - `POST https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal` + - 适用于:文档、多维表格、日历、群聊、消息等 Open API + - 不适用于:妙记转写正文(返回 2091005 权限不足) 2. **Cookie 自动获取链**(妙记专用) - - cookie_minutes.txt → 环境变量 → browser_cookie3 → **Cursor 浏览器 SQLite** → 手动兜底 - - 适用于:`/minutes/api/export`(文字)、`/minutes/api/status`(视频链接) + - cookie_minutes.txt → 环境变量 → browser_cookie3 → **Cursor 浏览器 SQLite** → 手动兜底 + - 适用于:`/minutes/api/export`(文字)、`/minutes/api/status`(视频链接) 3. **user_access_token**(需定期授权刷新,当前已过期) -| 项 | 值 | -|----|-----| -| **APP_ID** | `cli_a48818290ef8100d` | -| **APP_SECRET** | `dhjU0qWd5AzicGWTf4cTqhCWJOrnuCk4` | -| **获取 tenant_token** | `curl -X POST https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal -H 'Content-Type: application/json' -d '{"app_id":"cli_a48818290ef8100d","app_secret":"dhjU0qWd5AzicGWTf4cTqhCWJOrnuCk4"}'` | -| access_token(已过期) | `u-78RTHgrWN9np1RgBG_cWgo5lh9bk5kUjh20amN6001TM` | -| refresh_token(已用尽) | `ur-6Wu3DdR8h4TGJErCFjTarE5lhbzk5kirpO0aiN6000SA` | -| 说明 | 用户 token 授权时间 2026-01-29,已过期;需重新授权。日常操作优先用 tenant_token | -| **3月日志文档 wiki token** | 飞书「2026年3月 突破执行」文档地址栏 `wiki/` 后的一串;写入方式:`python3 02_卡人(水)/水桥_平台对接/飞书管理/脚本/feishu_token_cli.py set-march-token ` 或环境变量 `FEISHU_MARCH_WIKI_TOKEN` | + +| 项 | 值 | +| --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **APP_ID** | `cli_a48818290ef8100d` | +| **APP_SECRET** | `dhjU0qWd5AzicGWTf4cTqhCWJOrnuCk4` | +| **获取 tenant_token** | `curl -X POST https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal -H 'Content-Type: application/json' -d '{"app_id":"cli_a48818290ef8100d","app_secret":"dhjU0qWd5AzicGWTf4cTqhCWJOrnuCk4"}'` | +| access_token(已过期) | `u-78RTHgrWN9np1RgBG_cWgo5lh9bk5kUjh20amN6001TM` | +| refresh_token(已用尽) | `ur-6Wu3DdR8h4TGJErCFjTarE5lhbzk5kirpO0aiN6000SA` | +| 说明 | 用户 token 授权时间 2026-01-29,已过期;需重新授权。日常操作优先用 tenant_token | +| **3月日志文档 wiki token** | 飞书「2026年3月 突破执行」文档地址栏 `wiki/` 后的一串;写入方式:`python3 02_卡人(水)/水桥_平台对接/飞书管理/脚本/feishu_token_cli.py set-march-token ` 或环境变量 `FEISHU_MARCH_WIKI_TOKEN` | + ### 卡若AI 脚本如何取飞书 Token -| 方式 | 用途 | 位置/用法 | -|:---|:---|:---| -| **用户 access_token** | Wiki/文档/日历等需「用户身份」的接口 | ① 环境变量 `FEISHU_TOKEN="u-xxx"`(或 `t-xxx` tenant_token)
② 本文件 § 六 上表 `access_token`
③ `02_卡人(水)/水桥_平台对接/飞书管理/脚本/.feishu_tokens.json`(由 `auto_log.py` 授权后写入) | -| **应用 tenant_access_token** | 开放平台接口(妙记元数据、部分管理接口) | 由 `FEISHU_APP_ID` + `FEISHU_APP_SECRET` 调用 `POST /auth/v3/tenant_access_token/internal` 获取;APP 凭证在飞书管理脚本内置(如 `feishu_wiki_download_images.py`)或环境变量 `FEISHU_APP_ID` / `FEISHU_APP_SECRET` | -| **妙记导出(正文)** | 妙记文字/导出接口 | 开放平台**不提供**转写正文;需 **Cookie**(妙记列表 list 请求头)写入 `智能纪要/脚本/cookie_minutes.txt`,或 Playwright 页面内登录后导出 | + +| 方式 | 用途 | 位置/用法 | +| -------------------------- | --------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **用户 access_token** | Wiki/文档/日历等需「用户身份」的接口 | ① 环境变量 `FEISHU_TOKEN="u-xxx"`(或 `t-xxx` tenant_token) ② 本文件 § 六 上表 `access_token` ③ `02_卡人(水)/水桥_平台对接/飞书管理/脚本/.feishu_tokens.json`(由 `auto_log.py` 授权后写入) | +| **应用 tenant_access_token** | 开放平台接口(妙记元数据、部分管理接口) | 由 `FEISHU_APP_ID` + `FEISHU_APP_SECRET` 调用 `POST /auth/v3/tenant_access_token/internal` 获取;APP 凭证在飞书管理脚本内置(如 `feishu_wiki_download_images.py`)或环境变量 `FEISHU_APP_ID` / `FEISHU_APP_SECRET` | +| **妙记导出(正文)** | 妙记文字/导出接口 | 开放平台**不提供**转写正文;需 **Cookie**(妙记列表 list 请求头)写入 `智能纪要/脚本/cookie_minutes.txt`,或 Playwright 页面内登录后导出 | + **飞书任务优先命令行+API+TOKEN**:妙记/会议等流程与一键命令见 `运营中枢/参考资料/飞书任务_命令行与API优先_经验总结.md`。 @@ -233,12 +282,14 @@ > 玩值电竞 App 管理端「用户详情」通过该 API 拉取消费记录、绑定主播等,用于数据完善与清洗。配置在玩值电竞 App 根目录 `.env.local`。 -| 项 | 值 | -|----|-----| -| 接口基址 | `http://localhost:3117` | -| API Key | `sk-archer-jzuw3i5uhh` | -| API Secret | `sec-2ekp6pq6f89` | -| 说明 | 环境变量:`USER_ASSET_API_BASE_URL`、`USER_ASSET_API_KEY`、`USER_ASSET_API_SECRET`;不配置则详情页仅展示本库数据 | + +| 项 | 值 | +| ---------- | ------------------------------------------------------------------------------------------ | +| 接口基址 | `http://localhost:3117` | +| API Key | `sk-archer-jzuw3i5uhh` | +| API Secret | `sec-2ekp6pq6f89` | +| 说明 | 环境变量:`USER_ASSET_API_BASE_URL`、`USER_ASSET_API_KEY`、`USER_ASSET_API_SECRET`;不配置则详情页仅展示本库数据 | + --- @@ -246,29 +297,34 @@ > 用于玩值电竞任务同步到飞书项目需求管理。任务安排见:`玩值电竞/水:流程规划/玩值电竞_双月任务安排(飞书项目版).md` -| 项 | 值 | -|----|-----| -| Plugin ID | `MII_698EA68807C08CB2` | -| Plugin Secret | `63D218CF0E3B0CBC456B09FF4F7F2ED3` | -| FEISHU_PROJECT_KEY | `玩值电竞` | -| FEISHU_PROJECT_USER_KEY | `756877947514450739` | -| API 基址 | `https://project.feishu.cn` | -| Token 交换 | `POST /open_api/authen/plugin_token`(需 plugin_id + plugin_secret) | -| 创建工作项 | `POST /open_api/{project_key}/work_item/create`(需 X-PLUGIN-TOKEN + X-USER-KEY) | + +| 项 | 值 | +| ----------------------- | ------------------------------------------------------------------------------ | +| Plugin ID | `MII_698EA68807C08CB2` | +| Plugin Secret | `63D218CF0E3B0CBC456B09FF4F7F2ED3` | +| FEISHU_PROJECT_KEY | `玩值电竞` | +| FEISHU_PROJECT_USER_KEY | `756877947514450739` | +| API 基址 | `https://project.feishu.cn` | +| Token 交换 | `POST /open_api/authen/plugin_token`(需 plugin_id + plugin_secret) | +| 创建工作项 | `POST /open_api/{project_key}/work_item/create`(需 X-PLUGIN-TOKEN + X-USER-KEY) | + --- ## 七、小程序(明文) ### Soul 派对 -| 项 | 值 | -|----|-----| -| AppID | `wxb8bbb2b10dec74aa` | -| 项目路径 | `/Users/karuo/Documents/开发/3、自营项目/一场soul的创业实验/miniprogram` | -| API 域名 | `https://soul.quwanzhi.com` | -| 企业名称 | 泉州市卡若网络技术有限公司 | -| 组件联系电话 | `15880802661` | -| 联系邮箱 | `zhiqun@qq.com` | + + +| 项 | 值 | +| ------ | ---------------------------------------------------------- | +| AppID | `wxb8bbb2b10dec74aa` | +| 项目路径 | `/Users/karuo/Documents/开发/3、自营项目/一场soul的创业实验/miniprogram` | +| API 域名 | `https://soul.quwanzhi.com` | +| 企业名称 | 泉州市卡若网络技术有限公司 | +| 组件联系电话 | `15880802661` | +| 联系邮箱 | `zhiqun@qq.com` | + --- @@ -282,26 +338,30 @@ #### Chrome 已保存的登录(网址 + 账号,密码需本机查看后填入 8.2) -| 网址 | 账号/手机/邮箱 | -|------|----------------| -| https://github.com/ | zhiqun@qq.com | -| https://xui.ptlogin2.qq.com/(QQ 登录) | 28533368 | -| https://auth.alipay.com/ | zhengzhiqun@vip.qq.com | -| https://authet2.alipay.com/ | 28533368@qq.com | -| https://wise.com/login | zhiqun@qq.com | -| https://kr-op.quwanzhi.com/ | 15880802661、18888888882 | -| https://kr-phone.quwanzhi.com/ | 18888888888 | -| https://mckb.quwanzhi.com/ | 13800138000 | -| http://kr-op.quwanzhi.com/login | 13779954946 | -| http://192.168.110.1/(路由器等) | 82243164@xmcm | + +| 网址 | 账号/手机/邮箱 | +| ---------------------------------------------------------------------- | ------------------------------------------------------- | +| [https://github.com/](https://github.com/) | [zhiqun@qq.com](mailto:zhiqun@qq.com) | +| [https://xui.ptlogin2.qq.com/(QQ](https://xui.ptlogin2.qq.com/(QQ) 登录) | 28533368 | +| [https://auth.alipay.com/](https://auth.alipay.com/) | [zhengzhiqun@vip.qq.com](mailto:zhengzhiqun@vip.qq.com) | +| [https://authet2.alipay.com/](https://authet2.alipay.com/) | [28533368@qq.com](mailto:28533368@qq.com) | +| [https://wise.com/login](https://wise.com/login) | [zhiqun@qq.com](mailto:zhiqun@qq.com) | +| [https://kr-op.quwanzhi.com/](https://kr-op.quwanzhi.com/) | 15880802661、18888888882 | +| [https://kr-phone.quwanzhi.com/](https://kr-phone.quwanzhi.com/) | 18888888888 | +| [https://mckb.quwanzhi.com/](https://mckb.quwanzhi.com/) | 13800138000 | +| [http://kr-op.quwanzhi.com/login](http://kr-op.quwanzhi.com/login) | 13779954946 | +| [http://192.168.110.1/(路由器等)](http://192.168.110.1/(路由器等)) | 82243164@xmcm | + #### 本机钥匙串中涉及的应用/网站(密码需钥匙串访问中查看) -| 类型 | 名称 | -|------|------| + +| 类型 | 名称 | +| --------- | ----------------------------------------------------------------------------------- | | 浏览器/应用加密钥 | Chromium Safe Storage、Chrome Safe Storage、Safari(WebCrypto)、Trae CN、剪映(JianyingPro) | -| 网站/服务 | gh:github.com(GitHub) | -| 应用 | 飞书(Suite App)、Doubao、WPS Office、Cursor、StorageExplorer、BDdr_Trae 等 | +| 网站/服务 | gh:github.com(GitHub) | +| 应用 | 飞书(Suite App)、Doubao、WPS Office、Cursor、StorageExplorer、BDdr_Trae 等 | + *在「钥匙串访问」中搜索上述名称可找到对应条目,双击可查看/复制密码(需输入本机登录密码)。* @@ -309,39 +369,43 @@ ### 8.1 如何从本机查看并导出密码 -| 来源 | 操作步骤 | -|------|----------| -| **macOS 钥匙串** | 打开「钥匙串访问」→ 左侧选「登录」→ 右侧选「密码」→ 搜索网站名或关键词 → 双击条目可查看/复制密码(需输入本机登录密码) | -| **Safari** | Safari → 设置 → 密码 → 输入本机密码或 Touch ID → 可查看、复制、导出(可导出为 CSV 后把密码抄到下表) | -| **Chrome** | Chrome → 设置 → 密码与自动填充 → 密码(或地址栏输入 `chrome://settings/passwords`)→ 点击「眼睛」图标可查看、复制密码 | -| **Edge** | 设置 → 密码 → 查看已保存的密码 | + +| 来源 | 操作步骤 | +| ------------- | ---------------------------------------------------------------------------------- | +| **macOS 钥匙串** | 打开「钥匙串访问」→ 左侧选「登录」→ 右侧选「密码」→ 搜索网站名或关键词 → 双击条目可查看/复制密码(需输入本机登录密码) | +| **Safari** | Safari → 设置 → 密码 → 输入本机密码或 Touch ID → 可查看、复制、导出(可导出为 CSV 后把密码抄到下表) | +| **Chrome** | Chrome → 设置 → 密码与自动填充 → 密码(或地址栏输入 `chrome://settings/passwords`)→ 点击「眼睛」图标可查看、复制密码 | +| **Edge** | 设置 → 密码 → 查看已保存的密码 | + 把从上述途径查到的**密码**填到下面 8.2 表对应行即可。 ### 8.2 网站账号密码表(账号已部分填入,密码请本机查看后填写) -| 序号 | 网站名称 | 网址 | 账号/手机/邮箱 | 密码 | 备注 | -|------|----------|------|----------------|------|------| -| 1 | GitHub | https://github.com | zhiqun@qq.com | (Chrome/钥匙串查看) | | -| 2 | QQ 登录 | https://xui.ptlogin2.qq.com | 28533368 | (Chrome 查看) | | -| 3 | 支付宝 | https://auth.alipay.com | zhengzhiqun@vip.qq.com | (Chrome 查看) | | -| 4 | 支付宝(备) | https://authet2.alipay.com | 28533368@qq.com | (Chrome 查看) | | -| 5 | Wise | https://wise.com/login | zhiqun@qq.com | (Chrome 查看) | | -| 6 | 卡若运营台 kr-op | https://kr-op.quwanzhi.com | 15880802661 / 18888888882 | (Chrome 查看) | | -| 7 | 卡若手机端 kr-phone | https://kr-phone.quwanzhi.com | 18888888888 | (Chrome 查看) | | -| 8 | 存客宝 mckb | https://mckb.quwanzhi.com | 13800138000 | (Chrome 查看) | | -| 9 | kr-op 登录页 | http://kr-op.quwanzhi.com/login | 13779954946 | (Chrome 查看) | | -| 10 | 锐捷路由器(管理后台) | http://192.168.110.1 | admin | `Vtk()-1` | 锐捷Reyee EG105GW-E,管理后台用户名固定为 admin | -| 10a | 锐捷路由器(WiFi) | — | SSID: 卡若-4点起床的男人-2 | `Vtk()-1` | 5GHz WiFi,当前无加密 ⚠️ 需开启 WPA3 | -| 10b | 锐捷诺客云端运维 | https://cloud.ruijie.com.cn | 82243164@xmcm | (Chrome 查看) | Ruijie Cloud 远程管理 | -| 11 | 腾讯云 | https://console.cloud.tencent.com | | | | -| 12 | 阿里云 | https://ram.console.aliyun.com | | | | -| 13 | 微信公众平台 | https://mp.weixin.qq.com | | | | -| 14 | 微信支付商户 | https://pay.weixin.qq.com | | | | -| 15 | 飞书 | https://www.feishu.cn | | | | -| 16 | v0.dev | https://v0.dev | | | | -| 17 | Cursor | https://cursor.com | | | | -| 18 | (其他) | | | | | + +| 序号 | 网站名称 | 网址 | 账号/手机/邮箱 | 密码 | 备注 | +| --- | -------------- | ---------------------------------------------------------------------- | ------------------------------------------------------- | -------------- | ---------------------------------- | +| 1 | GitHub | [https://github.com](https://github.com) | [zhiqun@qq.com](mailto:zhiqun@qq.com) | (Chrome/钥匙串查看) | | +| 2 | QQ 登录 | [https://xui.ptlogin2.qq.com](https://xui.ptlogin2.qq.com) | 28533368 | (Chrome 查看) | | +| 3 | 支付宝 | [https://auth.alipay.com](https://auth.alipay.com) | [zhengzhiqun@vip.qq.com](mailto:zhengzhiqun@vip.qq.com) | (Chrome 查看) | | +| 4 | 支付宝(备) | [https://authet2.alipay.com](https://authet2.alipay.com) | [28533368@qq.com](mailto:28533368@qq.com) | (Chrome 查看) | | +| 5 | Wise | [https://wise.com/login](https://wise.com/login) | [zhiqun@qq.com](mailto:zhiqun@qq.com) | (Chrome 查看) | | +| 6 | 卡若运营台 kr-op | [https://kr-op.quwanzhi.com](https://kr-op.quwanzhi.com) | 15880802661 / 18888888882 | (Chrome 查看) | | +| 7 | 卡若手机端 kr-phone | [https://kr-phone.quwanzhi.com](https://kr-phone.quwanzhi.com) | 18888888888 | (Chrome 查看) | | +| 8 | 存客宝 mckb | [https://mckb.quwanzhi.com](https://mckb.quwanzhi.com) | 13800138000 | (Chrome 查看) | | +| 9 | kr-op 登录页 | [http://kr-op.quwanzhi.com/login](http://kr-op.quwanzhi.com/login) | 13779954946 | (Chrome 查看) | | +| 10 | 锐捷路由器(管理后台) | [http://192.168.110.1](http://192.168.110.1) | admin | `Vtk()-1` | 锐捷Reyee EG105GW-E,管理后台用户名固定为 admin | +| 10a | 锐捷路由器(WiFi) | — | SSID: 卡若-4点起床的男人-2 | `Vtk()-1` | 5GHz WiFi,当前无加密 ⚠️ 需开启 WPA3 | +| 10b | 锐捷诺客云端运维 | [https://cloud.ruijie.com.cn](https://cloud.ruijie.com.cn) | 82243164@xmcm | (Chrome 查看) | Ruijie Cloud 远程管理 | +| 11 | 腾讯云 | [https://console.cloud.tencent.com](https://console.cloud.tencent.com) | | | | +| 12 | 阿里云 | [https://ram.console.aliyun.com](https://ram.console.aliyun.com) | | | | +| 13 | 微信公众平台 | [https://mp.weixin.qq.com](https://mp.weixin.qq.com) | | | | +| 14 | 微信支付商户 | [https://pay.weixin.qq.com](https://pay.weixin.qq.com) | | | | +| 15 | 飞书 | [https://www.feishu.cn](https://www.feishu.cn) | | | | +| 16 | v0.dev | [https://v0.dev](https://v0.dev) | | | | +| 17 | Cursor | [https://cursor.com](https://cursor.com) | | | | +| 18 | (其他) | | | | | + *密码列请在本机按 8.1 打开 Chrome 或钥匙串查看后填入;填完后本文件即成为「本机 + 网站」账号密码的集中调取文档。* @@ -354,30 +418,34 @@ ### 锐捷 Reyee EG105GW-E(主路由器) -| 项 | 值 | -|----|-----| -| 型号 | Ruijie Reyee EG105GW-E(企业级无线网关) | -| 管理地址 | `http://192.168.110.1` | -| 管理用户名 | `admin` | -| 管理密码 | `Vtk()-1` | -| LAN IP / 子网 | 192.168.110.1 / 255.255.255.0 | -| WiFi SSID (5GHz) | 卡若-4点起床的男人-2 | -| WiFi 密码 | `Vtk()-1` | -| WiFi 安全模式 | 当前无加密 ⚠️(建议改为 WPA3) | -| WiFi 信道 | 64(5GHz DFS) | -| WiFi 频宽 | 80MHz | -| 路由器 MAC | 54:16:51:e0:ba:c8 | -| 外网 IP | 119.233.229.4 | -| DNS | 223.5.5.5(阿里 DNS) | -| 诺客云端运维 | https://cloud.ruijie.com.cn(账号 82243164@xmcm) | -| 连接方式 | 浏览器访问 `http://192.168.110.1` → 输入密码 `Vtk()-1` → 进入管理后台 | + +| 项 | 值 | +| ---------------- | ------------------------------------------------------------------------------- | +| 型号 | Ruijie Reyee EG105GW-E(企业级无线网关) | +| 管理地址 | `http://192.168.110.1` | +| 管理用户名 | `admin` | +| 管理密码 | `Vtk()-1` | +| LAN IP / 子网 | 192.168.110.1 / 255.255.255.0 | +| WiFi SSID (5GHz) | 卡若-4点起床的男人-2 | +| WiFi 密码 | `Vtk()-1` | +| WiFi 安全模式 | 当前无加密 ⚠️(建议改为 WPA3) | +| WiFi 信道 | 64(5GHz DFS) | +| WiFi 频宽 | 80MHz | +| 路由器 MAC | 54:16:51:e0:ba:c8 | +| 外网 IP | 119.233.229.4 | +| DNS | 223.5.5.5(阿里 DNS) | +| 诺客云端运维 | [https://cloud.ruijie.com.cn(账号](https://cloud.ruijie.com.cn(账号) 82243164@xmcm) | +| 连接方式 | 浏览器访问 `http://192.168.110.1` → 输入密码 `Vtk()-1` → 进入管理后台 | + #### 当前在线设备(2026-02-15 快照) -| 设备 | IP | MAC | 频段 | 信号 | 协商速率 | -|------|-----|-----|------|------|----------| + +| 设备 | IP | MAC | 频段 | 信号 | 协商速率 | +| --------------- | -------------- | ----------------- | ---- | ------- | -------- | | MacBook Pro(卡若) | 192.168.110.14 | 62:82:b4:c5:51:43 | 5GHz | -66 dBm | 144 Mbps | -| 未知设备 | 192.168.110.81 | 86:1e:6f:ac:a1:70 | 5GHz | -71 dBm | 216 Mbps | +| 未知设备 | 192.168.110.81 | 86:1e:6f:ac:a1:70 | 5GHz | -71 dBm | 216 Mbps | + --- @@ -385,17 +453,22 @@ > 以下文件在本机存在,其中可能含账号/密码/API;需在本机打开对应路径查看,必要时可把常用项抄到上文对应章节。 -| 说明 | 路径或位置 | -|------|-------------| -| 微信管理配置 | `~/.config/wechat_manager/config.yaml`(含 db_key、ai.api_key 等) | -| 存客宝备份 .env | `卡若AI/01_卡资(金)/_团队成员/金盾/存客宝备份/cunkebao_v3/Cunkebao/` 下 `.env.development`、`.env.local`、`.env.production` | -| 开发目录 .env(示例) | `开发/2、私域银行/工作手机/sdk/.env`、`开发/2、私域银行/cunkebao_v3/` 下各项目 `.env.*`、`开发/3、自营项目/上帝之眼/backend/.env` 等;具体以本机 `开发` 目录下 `.env`、`.env.local`、`.env.production` 为准 | + +| 说明 | 路径或位置 | +| ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 微信管理配置 | `~/.config/wechat_manager/config.yaml`(含 db_key、ai.api_key 等) | +| 存客宝备份 .env | `卡若AI/01_卡资(金)/_团队成员/金盾/存客宝备份/cunkebao_v3/Cunkebao/` 下 `.env.development`、`.env.local`、`.env.production` | +| 开发目录 .env(示例) | `开发/2、私域银行/工作手机/sdk/.env`、`开发/2、私域银行/cunkebao_v3/` 下各项目 `.env.`*、`开发/3、自营项目/上帝之眼/backend/.env` 等;具体以本机 `开发` 目录下 `.env`、`.env.local`、`.env.production` 为准 | + --- ## 十、联系方式(备忘) -| 项 | 值 | -|----|-----| -| 电话 | 15880802661 | -| 微信 | 28533368 | + +| 项 | 值 | +| --- | ----------- | +| 电话 | 15880802661 | +| 微信 | 28533368 | + + diff --git a/运营中枢/工作台/gitea_push_log.md b/运营中枢/工作台/gitea_push_log.md index 838baa6a..610d1d13 100644 --- a/运营中枢/工作台/gitea_push_log.md +++ b/运营中枢/工作台/gitea_push_log.md @@ -382,3 +382,4 @@ | 2026-03-16 16:59:19 | 🔄 卡若AI 同步 2026-03-16 16:59 | 更新:卡木、运营中枢、运营中枢工作台 | 排除 >20MB: 11 个 | | 2026-03-16 20:53:37 | 🔄 卡若AI 同步 2026-03-16 20:53 | 更新:水桥平台对接、运营中枢工作台 | 排除 >20MB: 11 个 | | 2026-03-17 04:43:13 | 🔄 卡若AI 同步 2026-03-17 04:43 | 更新:运营中枢工作台 | 排除 >20MB: 11 个 | +| 2026-03-17 05:43:11 | 🔄 卡若AI 同步 2026-03-17 05:43 | 更新:金仓、总索引与入口、运营中枢工作台 | 排除 >20MB: 11 个 | diff --git a/运营中枢/工作台/代码管理.md b/运营中枢/工作台/代码管理.md index 3471be1f..261d3572 100644 --- a/运营中枢/工作台/代码管理.md +++ b/运营中枢/工作台/代码管理.md @@ -385,3 +385,4 @@ | 2026-03-16 16:59:19 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-16 16:59 | 更新:卡木、运营中枢、运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) | | 2026-03-16 20:53:37 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-16 20:53 | 更新:水桥平台对接、运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) | | 2026-03-17 04:43:13 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-17 04:43 | 更新:运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) | +| 2026-03-17 05:43:11 | 成功 | 成功 | 🔄 卡若AI 同步 2026-03-17 05:43 | 更新:金仓、总索引与入口、运营中枢工作台 | 排除 >20MB: 11 个 | [仓库](http://open.quwanzhi.com:3000/fnvtk/karuo-ai) [百科](http://open.quwanzhi.com:3000/fnvtk/karuo-ai/wiki) |