code review:用户详情

This commit is contained in:
YunaiV
2023-08-23 01:41:25 +08:00
parent 746bf864d9
commit 55772cbba0
12 changed files with 126 additions and 79 deletions

View File

@ -347,7 +347,7 @@ const remainingRouter: AppRouteRecordRaw[] = [
]
},
{
path: '/property',
path: '/property', // TODO @puhui999这里的 path 有问题,应该是 /product/property
component: Layout,
name: 'Property',
meta: {
@ -427,6 +427,24 @@ const remainingRouter: AppRouteRecordRaw[] = [
}
]
},
{
path: '/member',
component: Layout,
name: 'member',
meta: { hidden: true },
children: [
{
path: 'user/detail',
name: 'MemberUserDetail',
meta: {
title: '会员详情',
noCache: true,
hidden: true
},
component: () => import('@/views/member/user/detail/index.vue')
}
]
},
{
path: '/pay',
component: Layout,