hookehuyr

style: 调整订单详情弹窗内边距和反馈页面图标

修改订单详情弹窗的左右内边距为10rpx
将反馈页面的车辆信息图标从自行车改为摩托车
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-07 16:48:19 4 + * @LastEditTime: 2025-07-08 11:02:56
5 * @FilePath: /jgdl/src/pages/feedBack/index.vue 5 * @FilePath: /jgdl/src/pages/feedBack/index.vue
6 * @Description: 意见反馈页面 6 * @Description: 意见反馈页面
7 --> 7 -->
...@@ -131,7 +131,7 @@ import './index.less' ...@@ -131,7 +131,7 @@ import './index.less'
131 const categories = ref([ 131 const categories = ref([
132 { id: 'feature', name: '功能建议', icon: '💡' }, 132 { id: 'feature', name: '功能建议', icon: '💡' },
133 { id: 'ui', name: '界面设计', icon: '✖️' }, 133 { id: 'ui', name: '界面设计', icon: '✖️' },
134 - { id: 'vehicle', name: '车辆信息', icon: '🚲' }, 134 + { id: 'vehicle', name: '车辆信息', icon: '🛵' },
135 { id: 'other', name: '其他问题', icon: '❓' } 135 { id: 'other', name: '其他问题', icon: '❓' }
136 ]) 136 ])
137 137
......
...@@ -447,7 +447,7 @@ ...@@ -447,7 +447,7 @@
447 447
448 /* 订单详情弹窗样式 */ 448 /* 订单详情弹窗样式 */
449 .order-detail-popup { 449 .order-detail-popup {
450 - padding: 40rpx; 450 + padding: 40rpx 10rpx;
451 height: 100%; 451 height: 100%;
452 display: flex; 452 display: flex;
453 flex-direction: column; 453 flex-direction: column;
......