feat: 登录模块完成

This commit is contained in:
许永平
2025-07-04 15:49:22 +08:00
parent aad2d055b7
commit 8de943d4a4
22 changed files with 1661 additions and 257 deletions

View File

@@ -17,36 +17,36 @@ export default function Scenarios() {
const [loading, setLoading] = useState(true);
const [error, setError] = useState('');
// AI智能获客用本地 mock 数据
const aiScenarios = [
{
id: "ai-friend",
name: "AI智能加友",
icon: "🤖",
count: 245,
growth: "+18.5%",
description: "智能分析目标用户画像,自动筛选优质客户",
path: "/scenarios/ai-friend",
},
{
id: "ai-group",
name: "AI群引流",
icon: "🤖",
count: 178,
growth: "+15.2%",
description: "智能群管理,提高群活跃度,增强获客效果",
path: "/scenarios/ai-group",
},
{
id: "ai-conversion",
name: "AI场景转化",
icon: "🤖",
count: 134,
growth: "+12.8%",
description: "多场景智能营销,提升获客转化率",
path: "/scenarios/ai-conversion",
},
];
// AI智能获客用本地 mock 数据(暂时注释掉,可以后续启用)
// const aiScenarios = [
// {
// id: "ai-friend",
// name: "AI智能加友",
// icon: "🤖",
// count: 245,
// growth: "+18.5%",
// description: "智能分析目标用户画像,自动筛选优质客户",
// path: "/scenarios/ai-friend",
// },
// {
// id: "ai-group",
// name: "AI群引流",
// icon: "🤖",
// count: 178,
// growth: "+15.2%",
// description: "智能群管理,提高群活跃度,增强获客效果",
// path: "/scenarios/ai-group",
// },
// {
// id: "ai-conversion",
// name: "AI场景转化",
// icon: "🤖",
// count: 134,
// growth: "+12.8%",
// description: "多场景智能营销,提升获客转化率",
// path: "/scenarios/ai-conversion",
// },
// ];
useEffect(() => {
const fetchScenarios = async () => {