feat: 开发练习纸

This commit is contained in:
R524809
2026-08-25 15:40:38 +08:00
parent c0b8666257
commit f82ac4d89d
13 changed files with 1238 additions and 1 deletions
+6
View File
@@ -38,6 +38,12 @@ export const CATEGORY_LIST: CategoryType[] = [
icon: '🔤',
path: '/pages/category/category?id=english',
},
{
id: 'papers',
name: '作业纸',
icon: '📄',
path: '/pages/category/category?id=papers',
},
// {
// id: 'craft',
// name: '创意手工',
+2 -1
View File
@@ -4,7 +4,8 @@ export type CategoryId =
| 'english'
| 'puzzle'
| 'craft'
| 'pinyin';
| 'pinyin'
| 'papers';
/** Tab / 首页用的分类展示模型 */
export interface CategoryType {