This commit is contained in:
Taric Xin
2021-12-08 19:15:15 +08:00
parent e94c4486ea
commit 2637bcbf02
10 changed files with 239 additions and 102 deletions

View File

@ -12,6 +12,11 @@ const routes: Routes = [
path: 'passport',
component: LayoutPassportComponent,
children: [
{
path: 'login',
component: UserLoginComponent,
data: { title: '登录' }
},
{
path: 'agreement',
component: OrderAgreementComponent,
@ -23,11 +28,6 @@ const routes: Routes = [
data: { title: '忘记密码' }
}
]
},
{
path: 'passport/login',
component: UserLoginComponent,
data: { title: '登录' }
}
];