91 lines
2.3 KiB
TypeScript
91 lines
2.3 KiB
TypeScript
export interface MathFunctionType {
|
||
id: string;
|
||
page?: string;
|
||
title: string;
|
||
desc: string;
|
||
icon: string;
|
||
}
|
||
|
||
export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
|
||
{
|
||
id: 'number-find',
|
||
page: 'numberFind',
|
||
title: '找数字,涂一涂',
|
||
desc: '找一找下面相同的数字,涂上颜色',
|
||
icon: '🔍',
|
||
},
|
||
{
|
||
id: 'number-coloring',
|
||
page: 'countMatch',
|
||
title: '按数字,涂颜色',
|
||
desc: '按数字给相应的圆圈涂上颜色',
|
||
icon: '🎨',
|
||
},
|
||
{
|
||
id: 'number-write',
|
||
page: 'numberFind',
|
||
title: '看数字,写一写',
|
||
desc: '看数字,按笔画顺序写一写',
|
||
icon: '✏️',
|
||
},
|
||
{
|
||
id: 'counting-matching',
|
||
page: 'countMatch',
|
||
title: '数一数,连一连',
|
||
desc: '通过连线配对数字和对应的数量图形',
|
||
icon: '🔗',
|
||
},
|
||
{
|
||
id: 'addition-5',
|
||
page: 'addition',
|
||
title: '5以内加法',
|
||
desc: '练习5以内的加法运算,图形化展示',
|
||
icon: '➕',
|
||
},
|
||
{
|
||
id: 'addition-10',
|
||
page: 'addition',
|
||
title: '10以内加法',
|
||
desc: '练习10以内的加法运算,图形化展示',
|
||
icon: '➕',
|
||
},
|
||
{
|
||
id: 'subtraction-10',
|
||
page: 'addition',
|
||
title: '10以内减法',
|
||
desc: '练习10以内的减法运算,图形化展示',
|
||
icon: '➖',
|
||
},
|
||
{
|
||
id: 'addition-subtraction-10',
|
||
page: 'addition',
|
||
title: '10以内加减法',
|
||
desc: '练习10以内的加法和减法混合运算',
|
||
icon: '±',
|
||
},
|
||
{
|
||
id: 'missing-number',
|
||
title: '填上缺少的数字',
|
||
desc: '在数字序列中找出并填写缺失的数字',
|
||
icon: '❓',
|
||
},
|
||
{
|
||
id: 'compare',
|
||
title: '数一数,比大小',
|
||
desc: '通过数数比较两组物品的数量大小',
|
||
icon: '⚖️',
|
||
},
|
||
{
|
||
id: 'counting-select',
|
||
title: '数一数,选一选',
|
||
desc: '数出物品数量,从多个选项中选择正确答案',
|
||
icon: '✓',
|
||
},
|
||
{
|
||
id: 'counting-fill',
|
||
title: '数一数,填一填',
|
||
desc: '数出物品数量,填写对应的数字',
|
||
icon: '✏️',
|
||
},
|
||
];
|