diff --git a/apps/child-coding-miniapp/src/pages.json b/apps/child-coding-miniapp/src/pages.json
index 6d0353d..9765cb8 100644
--- a/apps/child-coding-miniapp/src/pages.json
+++ b/apps/child-coding-miniapp/src/pages.json
@@ -35,6 +35,12 @@
"style": {
"navigationBarTitleText": "游戏页面"
}
+ },
+ {
+ "path": "pages/progress",
+ "style": {
+ "navigationBarTitleText": "进度页面"
+ }
}
],
"globalStyle": {
diff --git a/apps/child-coding-miniapp/src/pages/progress.vue b/apps/child-coding-miniapp/src/pages/progress.vue
new file mode 100644
index 0000000..f634e9e
--- /dev/null
+++ b/apps/child-coding-miniapp/src/pages/progress.vue
@@ -0,0 +1,138 @@
+
+
+
+
+ 我的进度
+
+
+ {{ totalLevels }}
+ 总关卡
+
+
+ {{ completedLevels }}
+ 已完成
+
+
+ {{ totalScore }}
+ 总积分
+
+
+
+
+
+
+ 关卡进度
+
+
+ {{ progress.levelTitle }}
+ 难度: {{ progress.difficulty }}/5
+
+
+
+ ✓
+ {{ progress.score }} 分
+
+
+ 未完成
+
+
+
+
+
+
+
+ 我的成就
+
+ 暂无成就,继续努力!
+
+
+
+ {{ achievement.icon || '🏆' }}
+ {{ achievement.title }}
+ {{ achievement.points }} 分
+
+
+
+
+
+
+
+
+
\ No newline at end of file