diff options
author | 2024-12-04 15:10:45 +0800 | |
---|---|---|
committer | 2024-12-24 02:22:17 +0000 | |
commit | b71bd34b5baa8e3dfedf83f777d62c988c6b9c97 (patch) | |
tree | a5a6a30e6735fe1e2a406746822080043afc65bb /usecaseui-portal/src/app/app-routing.module.ts | |
parent | e5de10348e38a4cac9f70da856ab7c6941bfc347 (diff) |
Optimize the code and fix bug
1. Create a new descripition component code
2. Optimize the code to extract a MaaS feature module and a common module.
3. Optimize the service code and create a new maasService.
4.Click the Q&A Assistant menu, the front-end interface does not deliver an application ID.
Issue-ID: USECASEUI-844
Change-Id: If57938f9c57b186691798eb0fb2cdd2fd64ed58a
Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/app-routing.module.ts')
-rw-r--r-- | usecaseui-portal/src/app/app-routing.module.ts | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usecaseui-portal/src/app/app-routing.module.ts b/usecaseui-portal/src/app/app-routing.module.ts index ad696e9f..5b4ca9e2 100644 --- a/usecaseui-portal/src/app/app-routing.module.ts +++ b/usecaseui-portal/src/app/app-routing.module.ts @@ -37,9 +37,6 @@ import { OrderServiceComponent } from './views/services/sotn-management/order-se import { SotnManagementComponent } from './views/services/sotn-management/sotn-management.component'; import { IntentManagementComponent } from './views/intent-management/intent-management.component'; import { RobotComponent } from './views/robot/robot.component'; -import { ApplicationManagementComponent } from './views/maas/build/application-management.component'; -import { UseApplicationComponent } from './views/maas/use/use-application.component'; -import { KnowledgeBaseManagementComponent } from './views/maas/knowledge-base-management/knowledge-base-management.component'; @@ -74,9 +71,7 @@ const routes: Routes = [ { path: 'network/mdons-network', component: MdonsNetworkComponent }, { path: 'intent-management', component:IntentManagementComponent}, { path: 'robot', component: RobotComponent }, - { path: 'maas/build', component: ApplicationManagementComponent }, - { path: 'maas/use', component: UseApplicationComponent }, - { path: 'maas/knowledge-base-management', component: KnowledgeBaseManagementComponent }, + { path: 'maas', loadChildren: './views/maas/maas.module#MaasModule' }, { path: '**', redirectTo: 'home', pathMatch: 'full' } ]; |