添加登录、注册、重置密码、谷歌验证码处理中

This commit is contained in:
2025-12-26 16:26:26 +08:00
parent e9bca8163d
commit a325efb57f
23 changed files with 1464 additions and 40 deletions

View File

@@ -213,6 +213,16 @@ export const accountRoutes = [
allAuthority: ['all']
}
},
{
path: 'purchased-machine-detail/:id',
name: 'purchasedMachineDetail',
component: () => import('../views/account/purchasedMachineDetail.vue'),
meta: {
title: '已购商品详情',
description: '查看已购买商品的详细信息',
allAuthority: ['all']
}
},
{
path: 'funds-flow',
name: 'accountFundsFlow',
@@ -282,6 +292,16 @@ export const accountRoutes = [
description: '为商品添加出售机器',
allAuthority: ['all']
}
},
{
path: 'security-settings',
name: 'accountSecuritySettings',
component: () => import('../views/account/securitySettings.vue'),
meta: {
title: '安全设置',
description: '管理账户安全选项',
allAuthority: ['all']
}
}
]
}