hookehuyr

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

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

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