hookehuyr

fix 推荐列表显示文字隐藏

<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-16 14:07:14
* @LastEditTime: 2025-08-14 15:17:16
* @FilePath: /jgdl/src/pages/recommendCarList/index.vue
* @Description: 精品推荐页面
-->
......@@ -58,10 +58,10 @@
<view class="w-32 h-24 relative p-2">
<image :src="car.front_photo" :alt="car.name" mode="aspectFill"
class="w-full h-full object-cover rounded-lg" />
<view v-if="car.isRecommend"
<!-- <view v-if="car.isRecommend"
class="absolute bottom-3 right-3 bg-green-500 text-white text-xs px-1 rounded flex items-center">
<text class="text-white">荐</text>
</view>
</view> -->
</view>
<view class="flex-1 p-3 relative">
<view class="absolute top-3 right-4" @tap.stop="() => toggleFavorite(car)">
......@@ -87,9 +87,9 @@
<text class="text-xs text-gray-500 mt-1 block">{{ car.school_name }}</text>
</view>
<!-- 推荐理由 -->
<view class="mt-1">
<!-- <view class="mt-1">
<text class="text-xs text-green-600">精品推荐</text>
</view>
</view> -->
</view>
</view>
</view>
......