hookehuyr

fix(myCar): 在审核结果前添加描述文本

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:20:28 4 + * @LastEditTime: 2025-07-18 15:48:40
5 * @FilePath: /jgdl/src/pages/myCar/index.vue 5 * @FilePath: /jgdl/src/pages/myCar/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
61 <view v-if="car.review_reason" class="verification-reason mt-2"> 61 <view v-if="car.review_reason" class="verification-reason mt-2">
62 <!-- <text class="text-xs text-red-500">审核结果:{{ car.review_reason }}</text> --> 62 <!-- <text class="text-xs text-red-500">审核结果:{{ car.review_reason }}</text> -->
63 <nut-config-provider :theme-vars="themeVars"> 63 <nut-config-provider :theme-vars="themeVars">
64 - <nut-ellipsis :content="car.review_reason" direction="end" rows="2" expand-text="展开" collapse-text="收起"></nut-ellipsis> 64 + <nut-ellipsis :content="'审核结果: ' + car.review_reason" direction="end" rows="2" expand-text="展开" collapse-text="收起"></nut-ellipsis>
65 </nut-config-provider> 65 </nut-config-provider>
66 </view> 66 </view>
67 <view class="price-section"> 67 <view class="price-section">
......