hookehuyr

style: 更新页面背景色和按钮样式

- 将反馈页面背景色从#f5f5f5改为纯白色
- 调整我的认证车页面价格字体大小和按钮颜色
1 .feedback-page { 1 .feedback-page {
2 min-height: 100vh; 2 min-height: 100vh;
3 - background-color: #f5f5f5; 3 + background-color: #fff;
4 display: flex; 4 display: flex;
5 flex-direction: column; 5 flex-direction: column;
6 } 6 }
......
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-03 20:35:32 4 + * @LastEditTime: 2025-07-04 14:53:07
5 * @FilePath: /jgdl/src/pages/myAuthCar/index.vue 5 * @FilePath: /jgdl/src/pages/myAuthCar/index.vue
6 * @Description: 我的认证车页面 6 * @Description: 我的认证车页面
7 --> 7 -->
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
40 <text class="text-sm text-gray-500 mt-1 block">{{ item.details }}</text> 40 <text class="text-sm text-gray-500 mt-1 block">{{ item.details }}</text>
41 <view class="mt-2 flex justify-between items-center"> 41 <view class="mt-2 flex justify-between items-center">
42 <view> 42 <view>
43 - <text class="text-orange-500 font-bold"> 43 + <text class="text-orange-500 font-bold" style="font-size: 1.2rem;">
44 ¥{{ item.price.toLocaleString() }} 44 ¥{{ item.price.toLocaleString() }}
45 </text> 45 </text>
46 <text class="text-gray-400 text-xs line-through ml-2"> 46 <text class="text-gray-400 text-xs line-through ml-2">
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
51 @click.stop="handleSellClick(item.id)" 51 @click.stop="handleSellClick(item.id)"
52 size="small" 52 size="small"
53 type="primary" 53 type="primary"
54 + color="orange"
54 class="px-3 py-1 rounded-full text-sm" 55 class="px-3 py-1 rounded-full text-sm"
55 > 56 >
56 我要卖车 57 我要卖车
......