Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-07-16 15:12:44 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3819053f38505392a1aacc87db872127e16e3278
3819053f
1 parent
4a9580ad
fix(myCar): 在获取车辆列表API中添加verification_status参数
添加verification_status参数以过滤未验证的车辆,确保列表只显示已验证车辆
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/pages/myCar/index.vue
src/pages/myCar/index.vue
View file @
3819053
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-16 1
4:46:56
* @LastEditTime: 2025-07-16 1
5: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
...
...
Please
register
or
login
to post a comment