hookehuyr

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

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