// 在浏览器控制台(F12)粘贴运行以下代码: console.log('=== 检查万川知识库配置 ==='); const raw = localStorage.getItem('chatlab_wanchuan_config'); console.log('原始配置:', raw); if (raw) { try { const config = JSON.parse(raw); console.log('解析后配置:', config); console.log('platformUrl:', config.platformUrl); console.log('selectedKbId:', config.selectedKbId); } catch (e) { console.error('配置解析失败:', e); } } else { console.warn('未找到 chatlab_wanchuan_config,需要先在设置页面绑定知识库'); }