hookehuyr

fix(MyRewards): 调整奖励卡片商户名称显示样式

将商户名称从标题行分离,单独显示为灰色小号文本,提升可读性
...@@ -33,7 +33,10 @@ ...@@ -33,7 +33,10 @@
33 > 33 >
34 <image :src="reward.thumbnail || 'https://placehold.co/120x120/e2f3ff/0369a1?text=券&font=roboto'" class="w-16 h-16 rounded-lg mr-4 flex-shrink-0" mode="aspectFill" /> 34 <image :src="reward.thumbnail || 'https://placehold.co/120x120/e2f3ff/0369a1?text=券&font=roboto'" class="w-16 h-16 rounded-lg mr-4 flex-shrink-0" mode="aspectFill" />
35 <view class="flex-1 min-w-0"> 35 <view class="flex-1 min-w-0">
36 - <view class="font-medium text-base mb-1">{{ reward.merchant_name }}·{{ reward.title }}</view> 36 + <view class="font-medium text-base mb-1">{{ reward.title }}</view>
37 + <view v-if="reward.merchant_name" class="text-xs text-gray-400 mb-1">
38 + {{ reward.merchant_name }}
39 + </view>
37 <view v-if="reward.status === 'UNUSED'" class="text-xs text-gray-400"> 40 <view v-if="reward.status === 'UNUSED'" class="text-xs text-gray-400">
38 有效期至:{{ formatDate(reward.expire_time) }} 41 有效期至:{{ formatDate(reward.expire_time) }}
39 </view> 42 </view>
......