hookehuyr

fix: 修改续航里程和最高时速输入框的默认提示文本

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-10 22:59:16 4 + * @LastEditTime: 2025-07-16 09:59:15
5 * @FilePath: /jgdl/src/pages/setAuthCar/index.vue 5 * @FilePath: /jgdl/src/pages/setAuthCar/index.vue
6 * @Description: 申请认证 6 * @Description: 申请认证
7 --> 7 -->
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
100 100
101 <!-- 续航里程 --> 101 <!-- 续航里程 -->
102 <nut-form-item label="续航里程" prop="range_km"> 102 <nut-form-item label="续航里程" prop="range_km">
103 - <nut-input v-model="formData.range_km" placeholder="60" type="number" input-align="right"> 103 + <nut-input v-model="formData.range_km" placeholder="请输入" type="number" input-align="right">
104 <template #right> 104 <template #right>
105 <text class="unit">公里</text> 105 <text class="unit">公里</text>
106 </template> 106 </template>
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
109 109
110 <!-- 最高时速 --> 110 <!-- 最高时速 -->
111 <nut-form-item label="最高时速" prop="max_speed_kmh"> 111 <nut-form-item label="最高时速" prop="max_speed_kmh">
112 - <nut-input v-model="formData.max_speed_kmh" placeholder="25" type="number" input-align="right"> 112 + <nut-input v-model="formData.max_speed_kmh" placeholder="请输入" type="number" input-align="right">
113 <template #right> 113 <template #right>
114 <text class="unit">km/h</text> 114 <text class="unit">km/h</text>
115 </template> 115 </template>
......