|
@@ -14,6 +14,8 @@ import { authGuard } from '../user/guard-auth/auth.guard';
|
|
import { PageLessonComponent } from './page-lesson/page-lesson.component';
|
|
import { PageLessonComponent } from './page-lesson/page-lesson.component';
|
|
import { PageLessonDetailComponent } from './page-lesson-detail/page-lesson-detail.component';
|
|
import { PageLessonDetailComponent } from './page-lesson-detail/page-lesson-detail.component';
|
|
import { PageTestComponent } from './page-test/page-test.component';
|
|
import { PageTestComponent } from './page-test/page-test.component';
|
|
|
|
+import { ContactListPage } from './contact-list/contact-list.component';
|
|
|
|
+import { ContactDetailPage } from './contact-detail/contact-detail.component';
|
|
|
|
|
|
|
|
|
|
const routes: Routes = [
|
|
const routes: Routes = [
|
|
@@ -27,9 +29,11 @@ const routes: Routes = [
|
|
{ path: 'community/attentionDetail', component: AttentionDetailComponent },
|
|
{ path: 'community/attentionDetail', component: AttentionDetailComponent },
|
|
{ path: 'community/recommendDetail', component: RecommendDetailComponent },
|
|
{ path: 'community/recommendDetail', component: RecommendDetailComponent },
|
|
{ path: 'community/share', component: ShareComponent },
|
|
{ path: 'community/share', component: ShareComponent },
|
|
- { path: "me/userFollow", component: UserFollowComponent },
|
|
|
|
|
|
+ { path: "me/userFollow", component: ContactListPage },
|
|
{ path: "me/userTag", component: UserTagComponent },
|
|
{ path: "me/userTag", component: UserTagComponent },
|
|
{ path: "me/userCollection", component: UserCollectionComponent },
|
|
{ path: "me/userCollection", component: UserCollectionComponent },
|
|
|
|
+ { path: 'me/userFollow/list', component: ContactDetailPage},
|
|
|
|
+ { path: 'me/userFollow/detail/:id', component: ContactDetailPage },
|
|
|
|
|
|
|
|
|
|
];
|
|
];
|