hookehuyr

fix(PosterCheckinDetail): 优化打卡进度显示方式

- 将打卡进度从圆点显示改为文字显示
- 显示格式:已打卡数:全部关卡数 X:Y
- 使用橙色文字提升视觉清晰度

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
......@@ -31,7 +31,7 @@
<!-- 打卡进度 -->
<view class="flex items-center mb-2">
<view class="flex items-center">
<!-- <view class="flex items-center">
<view
v-for="(point, index) in activityInfo.checkPoints"
:key="index"
......@@ -42,6 +42,10 @@
</view>
<text class="text-xs text-gray-600"
>{{ activityInfo.completedCount }}/{{ activityInfo.totalCount }}</text
> -->
<text class="text-xs text-orange-400">
已打卡数:全部关卡数&nbsp;
{{ activityInfo.completedCount }}:{{ activityInfo.totalCount }}</text
>
</view>
......