feat: 新增幼儿测字表

This commit is contained in:
R524809
2026-06-11 14:39:06 +08:00
parent a6e8f4df02
commit 25a37fc5e2
15 changed files with 1046 additions and 52 deletions
+4 -4
View File
@@ -7,10 +7,10 @@
// };
/** 当前应用版本号;profile 页和首页公告共用 */
export const APP_VERSION = '3.0.1';
export const APP_VERSION = '3.2.0';
/** 当前版本的更新摘要,用于首页公告;改版本时一起改 */
export const APP_VERSION_NOTE = '新增控笔练习';
export const APP_VERSION_NOTE = '新增幼儿识字测字表';
export const defaultPrintConfig: PrintConfig = {
// header: 'LogoImage',
@@ -31,11 +31,11 @@ export const defaultShareConfig = {
* - 当日第 1 次满批:弹分享窗,须分享后才能继续下载
* - 当日第 2 次及以后满批:直接播放激励广告解锁
*/
export const downloadFreeBatchSize = 4;
export const downloadFreeBatchSize = 3;
/**
* develop 包下载限制开关
* - develop:为 true 时启用下载配额/分享/广告(便于联调);为 false 时不限制
* - 体验版 / 正式版:始终启用,不受此开关影响
*/
export const enableDownloadLimitInDevelop = false;
export const enableDownloadLimitInDevelop = true;
+1
View File
@@ -5,3 +5,4 @@ export { LETTER_TRACING_WORKSHEET_DEFINITIONS } from './letterTracing';
export { PINYIN_DICTATION_WORKSHEET_DEFINITIONS } from './pinyin';
export { PEN_CONTROL_WORKSHEET_DEFINITIONS } from './penControl';
export { WORD_COLORING_WORKSHEET_DEFINITIONS } from './wordColoring';
export { WORD_TEST_WORKSHEET_DEFINITIONS } from './wordTest';
+15
View File
@@ -0,0 +1,15 @@
import type { WorksheetDefinition } from './types';
export const WORD_TEST_WORKSHEET_DEFINITIONS = [
{
id: 'word-test-sheet',
icon: 'todo-list-o',
title: '测字表',
subtitle: '按分类测识字,勾选认识的字',
ageMin: 5,
ageMax: 8,
difficulty: 1,
tags: ['测字', '识字', '汉字', '一年级'],
sortOrder: 38,
},
] as const satisfies ReadonlyArray<WorksheetDefinition>;