AI智能提案改善助手

基于先进AI技术,通过图像识别生成专业5S改善提案

核心功能:上传图片 → AI提供关键词 → 您筛选关键词 → 可追加关键词 → 生成改善方案

AI图像识别 - 制造业5S场景分析

拍摄或上传制造业现场图片,AI自动识别并提供关键词建议

桌面工位 设备维护 仓储管理 制铜业专项

正在分析中...

图像分析
关键词处理
生成方案
完成

分析结果

功能特色

AI智能分析

采用先进的AI技术,深度分析提案内容

关键词筛选

AI提供关键词,您筛选并可追加自定义关键词

专业可靠

基于5S管理理论,生成专业改善方案

AI智能分析

上传文档进行AI智能分析

文档上传
上传提案文档

支持PDF、Word、图片等格式

分析设置

分析历史

筛选条件
统计概览

156

总分析次数

87.5

平均评分

423

处理文件数
分析ID 分析类型 文件数量 评分 分析时间 状态 操作
#20241216001 综合分析 3 92分 2024-12-16 14:30 已完成
#20241216002 5S分析 1 85分 2024-12-16 13:15 已完成

数据管理

管理用户数据、图像数据、提案记录等系统数据

系统安全

系统安全设置、访问控制、日志审计等安全管理功能

快速操作

// 完善的后台管理功能 // 管理员登录功能 document.getElementById('adminLoginForm').addEventListener('submit', function(e) { e.preventDefault(); const username = document.getElementById('adminUsername').value; const password = document.getElementById('adminPassword').value; // 简单的管理员验证 (实际应用中应使用更安全的方式) if (username === 'admin' && password === 'admin123') { document.getElementById('admin-login-section').style.display = 'none'; document.getElementById('admin-dashboard-section').style.display = 'block'; localStorage.setItem('adminLoggedIn', 'true'); } else { document.getElementById('loginError').style.display = 'block'; document.getElementById('loginError').textContent = '用户名或密码错误'; } }); // 管理员退出登录 function adminLogout() { if (confirm('确定要退出管理后台吗?')) { document.getElementById('admin-login-section').style.display = 'block'; document.getElementById('admin-dashboard-section').style.display = 'none'; localStorage.removeItem('adminLoggedIn'); } } // 检查管理员登录状态 function checkAdminLogin() { if (localStorage.getItem('adminLoggedIn') === 'true') { document.getElementById('admin-login-section').style.display = 'none'; document.getElementById('admin-dashboard-section').style.display = 'block'; } } // AI配置管理 document.getElementById('aiConfigForm').addEventListener('submit', function(e) { e.preventDefault(); const config = { provider: document.getElementById('aiProvider').value, apiKey: document.getElementById('aiApiKey').value, model: document.getElementById('aiModel').value, accuracy: document.getElementById('aiAccuracy').value, maxConcurrency: document.getElementById('maxConcurrency').value, timeout: document.getElementById('timeout').value }; // 保存AI配置 localStorage.setItem('aiConfig', JSON.stringify(config)); alert('AI配置已保存!'); }); // 测试AI连接 function testAIConnection() { const provider = document.getElementById('aiProvider').value; const apiKey = document.getElementById('aiApiKey').value; if (!apiKey) { alert('请先输入API密钥'); return; } alert(`正在测试${provider}连接...\n\n连接测试成功!\n- 延迟: 120ms\n- 状态: 正常\n- 配额: 充足`); } // 规则管理功能 function addNewRule() { const ruleName = prompt('请输入新规则名称:'); if (ruleName) { const ruleId = 'rule-' + Date.now(); alert(`新规则已添加:\n\n规则ID: ${ruleId}\n规则名称: ${ruleName}\n状态: 已启用`); // 这里可以添加到规则表格中 } } function editRule(ruleId) { alert(`编辑规则: ${ruleId}\n\n功能包括:\n- 修改规则名称\n- 编辑关键词列表\n- 调整规则权重\n- 设置适用场景`); } function toggleRule(ruleId) { if (confirm(`确定要切换规则 ${ruleId} 的状态吗?`)) { alert(`规则 ${ruleId} 状态已切换`); } } function deleteRule(ruleId) { if (confirm(`确定要删除规则 ${ruleId} 吗?此操作不可恢复。`)) { alert(`规则 ${ruleId} 已删除`); } } // 用户管理功能 function addNewUser() { const username = prompt('请输入新用户名:'); if (username) { alert(`新用户已添加:\n\n用户名: ${username}\n默认密码: 123456\n角色: 普通用户\n状态: 已激活`); } } function editUser(userId) { alert(`编辑用户: ${userId}\n\n可修改:\n- 用户名\n- 邮箱地址\n- 用户角色\n- 账户状态`); } function resetPassword(userId) { if (confirm(`确定要重置用户 ${userId} 的密码吗?`)) { alert(`用户 ${userId} 密码已重置为: 123456\n请通知用户及时修改密码`); } } // 系统配置管理 document.getElementById('systemConfigForm').addEventListener('submit', function(e) { e.preventDefault(); const config = { systemName: document.getElementById('systemName').value, maintenanceMode: document.getElementById('maintenanceMode').checked, cacheExpiry: document.getElementById('cacheExpiry').value, maxFileSize: document.getElementById('maxFileSize').value, logRetention: document.getElementById('logRetention').value }; localStorage.setItem('systemConfig', JSON.stringify(config)); alert('系统配置已保存!'); }); // 安全配置管理 document.getElementById('securityConfigForm').addEventListener('submit', function(e) { e.preventDefault(); const config = { minPasswordLength: document.getElementById('minPasswordLength').value, maxLoginAttempts: document.getElementById('maxLoginAttempts').value, sessionTimeout: document.getElementById('sessionTimeout').value, enableTwoFactor: document.getElementById('enableTwoFactor').checked }; localStorage.setItem('securityConfig', JSON.stringify(config)); alert('安全配置已保存!'); }); // 日志管理 function refreshLogs() { alert('日志已刷新'); } function exportLogs() { alert('正在导出日志文件...\n\n导出完成!\n文件名: system_logs_' + new Date().toISOString().split('T')[0] + '.txt'); } // 页面加载时检查管理员登录状态 document.addEventListener('DOMContentLoaded', function() { // 加载保存的配置 const aiConfig = localStorage.getItem('aiConfig'); if (aiConfig) { const config = JSON.parse(aiConfig); document.getElementById('aiProvider').value = config.provider || 'zhipu'; document.getElementById('aiModel').value = config.model || 'glm-4'; document.getElementById('aiAccuracy').value = config.accuracy || 'medium'; document.getElementById('maxConcurrency').value = config.maxConcurrency || '10'; document.getElementById('timeout').value = config.timeout || '30'; } const systemConfig = localStorage.getItem('systemConfig'); if (systemConfig) { const config = JSON.parse(systemConfig); document.getElementById('systemName').value = config.systemName || 'AI提案改善助手'; document.getElementById('maintenanceMode').checked = config.maintenanceMode || false; document.getElementById('cacheExpiry').value = config.cacheExpiry || '24'; document.getElementById('maxFileSize').value = config.maxFileSize || '10'; document.getElementById('logRetention').value = config.logRetention || '30'; } const securityConfig = localStorage.getItem('securityConfig'); if (securityConfig) { const config = JSON.parse(securityConfig); document.getElementById('minPasswordLength').value = config.minPasswordLength || '8'; document.getElementById('maxLoginAttempts').value = config.maxLoginAttempts || '5'; document.getElementById('sessionTimeout').value = config.sessionTimeout || '30'; document.getElementById('enableTwoFactor').checked = config.enableTwoFactor || false; } // 检查管理员登录状态 checkAdminLogin(); });
未连接