This commit is contained in:
2025-03-17 15:47:56 +08:00
parent 9069edf952
commit 5b4a055d47
17 changed files with 783 additions and 43 deletions

View File

@@ -138,6 +138,70 @@ const mockRoutes = [
},
]
},
{
path: 'personal-center',
name: 'personal-center',
title: '个人中心',
icon: '',
meta: {
name: '个人中心'
},
component: 'personal-center',
children: [
{
path: 'account-settings',
name: 'account-settings',
title: '账号设置',
icon: '',
meta: {
name: '账号设置'
},
component: 'account-settings',
},
{
path: 'credit-score',
name: 'credit-score',
title: '信用分',
icon: '',
meta: {
name: '信用分'
},
component: 'credit-score',
},
]
},
{
path: 'get-help',
name: 'get-help',
title: '获取帮助',
icon: '',
meta: {
name: '获取帮助'
},
component: 'get-help',
children: [
{
path: 'problem-teaching',
name: 'problem-teaching.vue',
title: '常见问题教学',
icon: '',
meta: {
name: '常见问题教学'
},
component: 'problem-teaching',
},
{
path: 'contact-customer-service',
name: 'contact-customer-service',
title: '联系客服',
icon: '',
meta: {
name: '联系客服'
},
component: 'contact-customer-service',
},
]
}
];
export default mockRoutes;