hookehuyr

fix(myCar): 在获取车辆列表API中添加verification_status参数

添加verification_status参数以过滤未验证的车辆,确保列表只显示已验证车辆
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-16 14:46:56
* @LastEditTime: 2025-07-16 15:11:40
* @FilePath: /jgdl/src/pages/myCar/index.vue
* @Description: 文件描述
-->
......@@ -256,7 +256,7 @@ const fetchCarList = async (page = 0, append = false) => {
try {
// 调用真实API获取车辆列表
const response = await getMyListingVehicleAPI({ page, limit: pageSize.value })
const response = await getMyListingVehicleAPI({ page, limit: pageSize.value, verification_status: 1 })
if (response.code === 1) {
const { list, total } = response.data
......