feat:2.4.5 数一数填一填和数一数选一选开发

This commit is contained in:
R524809
2025-12-08 10:53:07 +08:00
parent a06e1bdc3d
commit 791a8bc373
9 changed files with 646 additions and 36 deletions
+39 -33
View File
@@ -7,6 +7,7 @@ export interface MathFunctionType {
}
export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
// 第一阶段:认识数字(最基础)
{
id: 'number-find',
page: 'numberFind',
@@ -14,13 +15,6 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
desc: '找一找下面相同的数字,涂上颜色',
icon: '🔍',
},
{
id: 'number-coloring',
page: 'countMatch',
title: '按数字,涂颜色',
desc: '按数字给相应的圆圈涂上颜色',
icon: '🎨',
},
{
id: 'number-write',
page: 'numberFind',
@@ -28,6 +22,21 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
desc: '看数字,按笔画顺序写一写',
icon: '✏️',
},
{
id: 'number-coloring',
page: 'countMatch',
title: '按数字,涂颜色',
desc: '按数字给相应的圆圈涂上颜色',
icon: '🎨',
},
// 第二阶段:数数与计数
{
id: 'counting-select',
page: 'countingSelect',
title: '数一数,选一选',
desc: '数出物品数量,圈出正确答案',
icon: '✓',
},
{
id: 'counting-matching',
page: 'countMatch',
@@ -35,6 +44,29 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
desc: '通过连线配对数字和对应的数量图形',
icon: '🔗',
},
{
id: 'counting-fill',
page: 'countingSelect',
title: '数一数,填一填',
desc: '数出物品数量,填写对应的数字',
icon: '✏️',
},
{
id: 'compare',
page: 'compare',
title: '数一数,比大小',
desc: '比较数量大小,在 ⭕️ 中填入>、<、=',
icon: '⚖️',
},
// 第三阶段:数字序列
{
id: 'missing-number',
page: 'missingNumber',
title: '填上缺少的数字',
desc: '在数字序列中找出并填写缺失的数字',
icon: '❓',
},
// 第四阶段:简单运算(从易到难)
{
id: 'addition-5',
page: 'addition',
@@ -63,30 +95,4 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
desc: '练习10以内的加法和减法混合运算',
icon: '±',
},
{
id: 'missing-number',
page: 'missingNumber',
title: '填上缺少的数字',
desc: '在数字序列中找出并填写缺失的数字',
icon: '❓',
},
{
id: 'compare',
page: 'compare',
title: '数一数,比大小',
desc: '比较数量大小,在 ⭕️ 中填入>、<、=',
icon: '⚖️',
},
{
id: 'counting-select',
title: '数一数,选一选',
desc: '数出物品数量,从多个选项中选择正确答案',
icon: '✓',
},
{
id: 'counting-fill',
title: '数一数,填一填',
desc: '数出物品数量,填写对应的数字',
icon: '✏️',
},
];