hookehuyr

fix: 修正奖励页面兑换提示条件和调整打卡页面文案

修正家庭积分页面兑换提示的显示条件,从"isFamilyCreator"改为"!isFamilyCreator"
简化打卡页面空状态提示文案,合并重复信息
...@@ -91,9 +91,8 @@ ...@@ -91,9 +91,8 @@
91 <view v-if="pageState === 'no-checkin'" class="flex-1 mx-4 mb-2 flex justify-center"> 91 <view v-if="pageState === 'no-checkin'" class="flex-1 mx-4 mb-2 flex justify-center">
92 <view class="bg-white rounded-lg shadow-sm p-8 text-center max-w-sm"> 92 <view class="bg-white rounded-lg shadow-sm p-8 text-center max-w-sm">
93 <view class="text-6xl mb-4">📸</view> 93 <view class="text-6xl mb-4">📸</view>
94 - <view class="text-lg font-bold text-gray-800 mb-2">打卡信息为空</view> 94 + <view class="text-lg font-bold text-gray-800 mb-2">您还没有打卡记录</view>
95 - <view class="text-sm text-gray-500 mb-4">您还没有打卡记录,请先参加活动打卡后再来生成海报</view> 95 + <view class="text-sm text-orange-500 mb-4">完成打卡后即可生成专属海报</view>
96 - <view class="text-xs text-orange-500">完成打卡后即可生成专属海报</view>
97 </view> 96 </view>
98 </view> 97 </view>
99 98
......
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:47:26 2 * @Date: 2025-08-27 17:47:26
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-19 15:44:38 4 + * @LastEditTime: 2025-09-19 18:14:13
5 * @FilePath: /lls_program/src/pages/Rewards/index.vue 5 * @FilePath: /lls_program/src/pages/Rewards/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
15 <view class="pt-8 pb-8 flex flex-col items-center"> 15 <view class="pt-8 pb-8 flex flex-col items-center">
16 <view class="text-4xl font-bold text-white mb-1">{{ totalPoints }}分</view> 16 <view class="text-4xl font-bold text-white mb-1">{{ totalPoints }}分</view>
17 <view class="text-white text-opacity-80">家庭积分</view> 17 <view class="text-white text-opacity-80">家庭积分</view>
18 - <view v-if="isFamilyCreator" class="text-white text-xs mt-1">请您的大家长进行兑换</view> 18 + <view v-if="!isFamilyCreator" class="text-white text-xs mt-1">请您的大家长进行兑换</view>
19 </view> 19 </view>
20 <!-- Main content --> 20 <!-- Main content -->
21 <view class="bg-white rounded-t-3xl px-4 pt-5"> 21 <view class="bg-white rounded-t-3xl px-4 pt-5">
......