hookehuyr

fix(authCar): 修正认证车源列表的验证状态参数值

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-17 14:01:28 4 + * @LastEditTime: 2025-07-17 15:51:44
5 * @FilePath: /jgdl/src/pages/authCar/index.vue 5 * @FilePath: /jgdl/src/pages/authCar/index.vue
6 * @Description: 认证车源 6 * @Description: 认证车源
7 --> 7 -->
...@@ -163,7 +163,7 @@ const loadAuthCarData = async (isLoadMore = false) => { ...@@ -163,7 +163,7 @@ const loadAuthCarData = async (isLoadMore = false) => {
163 const params = { 163 const params = {
164 page: currentPage.value, 164 page: currentPage.value,
165 limit: pageSize.value, 165 limit: pageSize.value,
166 - verification_status: 1 // 只获取已认证的车辆 166 + verification_status: 5 // 只获取已认证的车辆
167 } 167 }
168 168
169 const response = await getVehicleListAPI(params) 169 const response = await getVehicleListAPI(params)
......