summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorguochuyicmri <guochuyi@chinamobile.com>2019-04-02 16:35:22 +0800
committerguochuyicmri <guochuyi@chinamobile.com>2019-04-02 16:35:32 +0800
commitd5f7ee6e80bb55f2baf89ee5e669ef6829fd20fd (patch)
tree120b8249b56ac26408e44ebdb1628f9a6099a24e /usecaseui-portal/src/app/app-routing.module.ts
parentb19b6af7444f5c5b9b2869270e26e76cc5d47f2d (diff)
Add user service type management module
Change-Id: Id86465d839b27dd4350d391198b8eacdf1f330a8 Issue-ID: USECASEUI-212 Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/app-routing.module.ts')
-rw-r--r--usecaseui-portal/src/app/app-routing.module.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/app-routing.module.ts b/usecaseui-portal/src/app/app-routing.module.ts
index 7fe7361c..2d2277c3 100644
--- a/usecaseui-portal/src/app/app-routing.module.ts
+++ b/usecaseui-portal/src/app/app-routing.module.ts
@@ -3,6 +3,7 @@ import { RouterModule, Routes } from '@angular/router';
import { HomeComponent } from './home/home.component';
+import { ManagementComponent } from './management/management.component';
import { ServicesComponent } from './services/services.component';
import { ServicesListComponent } from './services/services-list/services-list.component';
import { OnboardVnfVmComponent } from './services/onboard-vnf-vm/onboard-vnf-vm.component';
@@ -23,6 +24,7 @@ const ServicesChildRoutes: Routes = [
const routes: Routes = [
{ path: 'home', component: HomeComponent},
+ { path: 'management', component: ManagementComponent},
// { path: 'services', component: ServicesComponent, children:ServicesChildRoutes}, //暂时不是子路由结构
{ path: 'services/services-list', component: ServicesListComponent},
{ path: 'services/onboard-vnf-vm', component: OnboardVnfVmComponent},