fix(PosterCheckinDetail): 优化打卡进度显示文本
- 将"已打卡数:全部关卡数"改为"已打卡数/全部关卡数" - 使用中文冒号保持文本风格一致 - 更新 CHANGELOG.md Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Showing
2 changed files
with
17 additions
and
2 deletions
| ... | @@ -6,6 +6,21 @@ | ... | @@ -6,6 +6,21 @@ |
| 6 | 6 | ||
| 7 | --- | 7 | --- |
| 8 | 8 | ||
| 9 | +## [2026-02-10] - 打卡进度显示文本优化 | ||
| 10 | + | ||
| 11 | +### 优化 | ||
| 12 | +- 优化海报打卡详情页的打卡进度显示文本 | ||
| 13 | +- 将"已打卡数:全部关卡数"改为"已打卡数/全部关卡数",使用斜杠提高可读性 | ||
| 14 | +- 使用中文冒号":"代替英文冒号,保持文本风格一致 | ||
| 15 | + | ||
| 16 | +--- | ||
| 17 | + | ||
| 18 | +**详细信息**: | ||
| 19 | +- **影响文件**: src/pages/PosterCheckinDetail/index.vue | ||
| 20 | +- **技术栈**: Vue 3, Taro, TailwindCSS | ||
| 21 | +- **测试状态**: 已通过 | ||
| 22 | +- **备注**: 提升文本显示的专业性和一致性 | ||
| 23 | + | ||
| 9 | ## [2026-02-05] - 项目开发环境初始化 | 24 | ## [2026-02-05] - 项目开发环境初始化 |
| 10 | 25 | ||
| 11 | ### 新增 | 26 | ### 新增 | ... | ... |
| ... | @@ -44,8 +44,8 @@ | ... | @@ -44,8 +44,8 @@ |
| 44 | >{{ activityInfo.completedCount }}/{{ activityInfo.totalCount }}</text | 44 | >{{ activityInfo.completedCount }}/{{ activityInfo.totalCount }}</text |
| 45 | > --> | 45 | > --> |
| 46 | <text class="text-xs text-orange-400"> | 46 | <text class="text-xs text-orange-400"> |
| 47 | - 已打卡数:全部关卡数 | 47 | + 已打卡数/全部关卡数: |
| 48 | - {{ activityInfo.completedCount }}:{{ activityInfo.totalCount }}</text | 48 | + {{ activityInfo.completedCount }}/{{ activityInfo.totalCount }}</text |
| 49 | > | 49 | > |
| 50 | </view> | 50 | </view> |
| 51 | 51 | ... | ... |
-
Please register or login to post a comment