feat:2.6.3 破十法、平十法、借十法
This commit is contained in:
@@ -8,6 +8,54 @@ export interface MathFunctionType {
|
||||
}
|
||||
|
||||
export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
|
||||
{
|
||||
id: 'make-ten',
|
||||
page: 'makeTen',
|
||||
title: '凑十法练习',
|
||||
desc: '通过凑十法学习20以内进位加法',
|
||||
icon: '➕',
|
||||
img: '/assets/mathEntrance/make-ten.png',
|
||||
},
|
||||
{
|
||||
id: 'break-ten',
|
||||
page: 'breakTen',
|
||||
title: '破十法练习',
|
||||
desc: '通过破十法学习20以内退位减法',
|
||||
icon: '➖',
|
||||
img: '/assets/mathEntrance/break-ten.png',
|
||||
},
|
||||
{
|
||||
id: 'flat-ten',
|
||||
page: 'flatTen',
|
||||
title: '平十法练习',
|
||||
desc: '通过平十法学习20以内退位减法',
|
||||
icon: '➖',
|
||||
img: '/assets/mathEntrance/flat-ten.png',
|
||||
},
|
||||
{
|
||||
id: 'borrow-ten',
|
||||
page: 'borrowTen',
|
||||
title: '借十法练习',
|
||||
desc: '通过借十法学习20以上退位减法',
|
||||
icon: '➖',
|
||||
img: '/assets/mathEntrance/borrow-ten.png',
|
||||
},
|
||||
{
|
||||
id: 'number-decompose-20',
|
||||
page: 'numberDecompose',
|
||||
title: '20以内数的分与合',
|
||||
desc: '把数字分一分,合一合',
|
||||
icon: '🔢',
|
||||
img: '/assets/mathEntrance/number-decompose-20.png',
|
||||
},
|
||||
{
|
||||
id: 'number-decompose',
|
||||
page: 'numberDecompose',
|
||||
title: '10以内数的分与合',
|
||||
desc: '把数字分一分,合一合',
|
||||
icon: '🔢',
|
||||
img: '/assets/mathEntrance/number-decompose.png',
|
||||
},
|
||||
// 第一阶段:认识数字(最基础)
|
||||
{
|
||||
id: 'number-find',
|
||||
@@ -100,14 +148,7 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
|
||||
icon: '🔢',
|
||||
img: '/assets/mathEntrance/number-sort.png',
|
||||
},
|
||||
{
|
||||
id: 'number-decompose',
|
||||
page: 'numberDecompose',
|
||||
title: '10以内数的分与合',
|
||||
desc: '把数字分一分,合一合',
|
||||
icon: '🔢',
|
||||
img: '/assets/mathEntrance/number-decompose.png',
|
||||
},
|
||||
|
||||
// 第四阶段:简单运算(从易到难)
|
||||
{
|
||||
id: 'addition-5',
|
||||
@@ -141,20 +182,4 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
|
||||
icon: '±',
|
||||
img: '/assets/mathEntrance/addition-subtraction-10.png',
|
||||
},
|
||||
{
|
||||
id: 'number-decompose-20',
|
||||
page: 'numberDecompose',
|
||||
title: '20以内数的分与合',
|
||||
desc: '把数字分一分,合一合',
|
||||
icon: '🔢',
|
||||
img: '/assets/mathEntrance/number-decompose-20.png',
|
||||
},
|
||||
{
|
||||
id: 'make-ten',
|
||||
page: 'makeTen',
|
||||
title: '凑十法练习',
|
||||
desc: '通过凑十法学习20以内进位加法',
|
||||
icon: '➕',
|
||||
img: '/assets/mathEntrance/make-ten.png',
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user