feat:架构代码优化

This commit is contained in:
R524809
2025-12-11 13:02:44 +08:00
parent 2c32235568
commit 3c0e2af10d
89 changed files with 2774 additions and 2816 deletions
+18
View File
@@ -0,0 +1,18 @@
export interface FocusFunctionType {
id: string;
page?: string;
title: string;
desc: string;
icon: string;
}
export const FOCUS_FUNCTION_TYPES: FocusFunctionType[] = [
// 第一阶段:认识数字(最基础)
{
id: 'number-find',
page: 'numberFind',
title: '找数字,涂一涂',
desc: '找一找下面相同的数字,涂上颜色',
icon: '🔍',
},
];
+7
View File
@@ -102,4 +102,11 @@ export const MATH_FUNCTION_TYPES: MathFunctionType[] = [
desc: '练习10以内的加法和减法混合运算',
icon: '±',
},
{
id: 'number-decompose-20',
page: 'numberDecompose',
title: '20以内数的分与合',
desc: '把数字分一分,合一合',
icon: '🔢',
},
];