feat: 新增认识时钟绘制

This commit is contained in:
R524809
2026-06-25 12:46:43 +08:00
parent b802709517
commit 783ebfb936
15 changed files with 1119 additions and 1 deletions
@@ -0,0 +1,15 @@
import type { WorksheetDefinition } from './types';
export const CLOCK_READING_WORKSHEET_DEFINITIONS = [
{
id: 'clock-reading',
icon: 'clock',
title: '认识时钟',
subtitle: '看钟读时间,填写数字时刻',
ageMin: 4,
ageMax: 7,
difficulty: 2,
tags: ['数学', '钟表', '时间'],
sortOrder: 127,
},
] as const satisfies ReadonlyArray<WorksheetDefinition>;
+1
View File
@@ -1,5 +1,6 @@
export type { WorksheetDefinition } from './types';
export { MATH_WORKSHEET_DEFINITIONS } from './math';
export { CLOCK_READING_WORKSHEET_DEFINITIONS } from './clockReading';
export { FOCUS_WORKSHEET_DEFINITIONS } from './focus';
export { LETTER_TRACING_WORKSHEET_DEFINITIONS } from './letterTracing';
export { PINYIN_DICTATION_WORKSHEET_DEFINITIONS } from './pinyin';