feat:2.5.0初始化专注启蒙项目

This commit is contained in:
R524809
2025-12-15 17:00:06 +08:00
parent 62ba977a45
commit fefe437f0f
29 changed files with 3465 additions and 700 deletions
+29 -3
View File
@@ -4,15 +4,41 @@ export interface FocusFunctionType {
title: string;
desc: string;
icon: string;
mode?: string; // 用于传递默认模式参数,如 '3x3', '5x5', '7x7'
}
export const FOCUS_FUNCTION_TYPES: FocusFunctionType[] = [
// 形状识别
{
id: 'shape-recognition',
page: 'shape',
title: '识别形状',
desc: '识别形状,涂一涂',
icon: '🔍',
},
// 格子仿画
{
id: 'grid-drawing',
id: 'grid-drawing-3x3',
page: 'gridDrawing',
title: '格子仿画',
desc: '在网格中填充颜色,形成各种形状',
title: '格子仿画 3x3',
desc: '🎯 简单有趣,培养专注力',
icon: '🎨',
mode: '3x3',
},
{
id: 'grid-drawing-5x5',
page: 'gridDrawing',
title: '格子仿画 5x5',
desc: '✨ 创意挑战,提升观察力',
icon: '🎨',
mode: '5x5',
},
{
id: 'grid-drawing-7x7',
page: 'gridDrawing',
title: '格子仿画 7x7',
desc: '🌟 大师挑战,锻炼耐心',
icon: '🎨',
mode: '7x7',
},
];