二手车交易,全部页面&对接部分接口

This commit is contained in:
2025-03-11 11:08:08 +08:00
parent d789e88b05
commit 24f25635d5
2 changed files with 130 additions and 2 deletions

View File

@ -1,4 +1,4 @@
const kpiRouter = [
const secondHandCar = [
{
path: '/indexList',
name: 'indexList',
@ -7,5 +7,45 @@ const kpiRouter = [
title: '首页列表',
}
},
{
path: '/carSource',
name: 'carSource',
component: () => import('@/views/secondHandCar/carSource.vue'),
meta:{
title: '车源发布',
}
},
{
path: '/wantBuy',
name: 'wantBuy',
component: () => import('@/views/secondHandCar/wantBuy.vue'),
meta:{
title: '求购发布',
}
},
{
path: '/forSale',
name: 'forSale',
component: () => import('@/views/secondHandCar/forSale.vue'),
meta:{
title: '查看车源',
}
},
{
path: '/wantBuySale',
name: 'wantBuySale',
component: () => import('@/views/secondHandCar/wantBuySale.vue'),
meta:{
title: '查看求购',
}
},
{
path: '/mineRelease',
name: 'mineRelease',
component: () => import('@/views/secondHandCar/mineRelease.vue'),
meta:{
title: '我的发布',
}
},
]
export default kpiRouter
export default secondHandCar