hookehuyr

fix(productDetail): 仅在价格存在时显示价格视图并添加货币符号空格

fix(myAuthCar): 在审核结果前添加描述文本
1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-18 12:59:56 4 + * @LastEditTime: 2025-07-18 14:39:24
5 * @FilePath: /jgdl/src/pages/myAuthCar/index.vue 5 * @FilePath: /jgdl/src/pages/myAuthCar/index.vue
6 * @Description: 我的认证车页面 6 * @Description: 我的认证车页面
7 --> 7 -->
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
47 <view v-if="item.verification_status === 7 && item.verification_reason" class="verification-reason mt-1"> 47 <view v-if="item.verification_status === 7 && item.verification_reason" class="verification-reason mt-1">
48 <!-- <text class="text-xs text-red-500">审核结果:{{ item.verification_reason }}</text> --> 48 <!-- <text class="text-xs text-red-500">审核结果:{{ item.verification_reason }}</text> -->
49 <nut-config-provider :theme-vars="themeVars"> 49 <nut-config-provider :theme-vars="themeVars">
50 - <nut-ellipsis :content="item.verification_reason" direction="end" rows="2" expand-text="展开" collapse-text="收起"></nut-ellipsis> 50 + <nut-ellipsis :content="'审核结果: ' + item.verification_reason" direction="end" rows="2" expand-text="展开" collapse-text="收起"></nut-ellipsis>
51 </nut-config-provider> 51 </nut-config-provider>
52 </view> 52 </view>
53 <!-- <view class="mt-2 flex justify-between items-center"> 53 <!-- <view class="mt-2 flex justify-between items-center">
......
1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-14 16:38:18 4 + * @LastEditTime: 2025-07-18 14:42:02
5 * @FilePath: /jgdl/src/pages/productDetail/index.vue 5 * @FilePath: /jgdl/src/pages/productDetail/index.vue
6 * @Description: 商品详情页 6 * @Description: 商品详情页
7 --> 7 -->
...@@ -37,9 +37,9 @@ ...@@ -37,9 +37,9 @@
37 </view> 37 </view>
38 </view> 38 </view>
39 </view> 39 </view>
40 - <view class="flex items-center mb-3"> 40 + <view v-if="product?.price" class="flex items-center mb-3">
41 <text class="text-2xl font-bold text-orange-500 mr-2"> 41 <text class="text-2xl font-bold text-orange-500 mr-2">
42 - ¥{{ product?.price?.toLocaleString() }} 42 + ¥ {{ product?.price?.toLocaleString() }}
43 </text> 43 </text>
44 <!-- <view class="ml-2 text-xs px-2 py-1 bg-orange-100 text-orange-600 rounded"> 44 <!-- <view class="ml-2 text-xs px-2 py-1 bg-orange-100 text-orange-600 rounded">
45 低于市场价{{ product.discountPercent }}% 45 低于市场价{{ product.discountPercent }}%
......