hookehuyr

fix: 修正表单默认值和反馈分类选项

将销售表单的默认里程值从1200改为100
将反馈页面的默认分类选项从null改为'feature'
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 15:46:39 4 + * @LastEditTime: 2025-07-15 13:14:50
5 * @FilePath: /jgdl/src/pages/feedBack/index.vue 5 * @FilePath: /jgdl/src/pages/feedBack/index.vue
6 * @Description: 意见反馈页面 6 * @Description: 意见反馈页面
7 --> 7 -->
...@@ -138,7 +138,7 @@ const categories = ref([ ...@@ -138,7 +138,7 @@ const categories = ref([
138 ]) 138 ])
139 139
140 // 表单数据 140 // 表单数据
141 -const selectedCategory = ref(null) 141 +const selectedCategory = ref('feature')
142 const feedbackText = ref('') 142 const feedbackText = ref('')
143 const contactInfo = ref('') 143 const contactInfo = ref('')
144 const uploadedImages = ref([]) 144 const uploadedImages = ref([])
......
...@@ -374,7 +374,7 @@ const formData = reactive({ ...@@ -374,7 +374,7 @@ const formData = reactive({
374 brandModel: '', // 品牌型号组合字段,用于表单验证 374 brandModel: '', // 品牌型号组合字段,用于表单验证
375 manufacture_year: '', 375 manufacture_year: '',
376 new_level: '', 376 new_level: '',
377 - total_mileage_km: '1200', 377 + total_mileage_km: '100',
378 range_km: '60', 378 range_km: '60',
379 max_speed_kmh: '25', 379 max_speed_kmh: '25',
380 battery_capacity_ah: '20', 380 battery_capacity_ah: '20',
......