This commit is contained in:
Taric Xin
2022-02-23 14:20:52 +08:00
parent be36b14da2
commit 8ef9e67941
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
const routes: Routes = [];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PartnerRoutingModule {}

View File

@ -0,0 +1,11 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from '@shared';
import { PartnerRoutingModule } from './partner-routing.module';
const COMPONENTS: any[] = [];
@NgModule({
declarations: [...COMPONENTS],
imports: [CommonModule, PartnerRoutingModule, SharedModule]
})
export class PartnerModule {}

View File

@ -67,6 +67,7 @@ const routes: Routes = [
loadChildren: () => import('./contract-management/contract-management.module').then(m => m.ContractManagementManagementModule) loadChildren: () => import('./contract-management/contract-management.module').then(m => m.ContractManagementManagementModule)
}, },
{ path: 'menu-management', loadChildren: () => import('./menu-manager/menu-manager.module').then(m => m.MenuManagerModule) }, { path: 'menu-management', loadChildren: () => import('./menu-manager/menu-manager.module').then(m => m.MenuManagerModule) },
{ path: 'partner', loadChildren: () => import('./partner/partner.module').then(m => m.PartnerModule) },
{ {
path: 'download', path: 'download',
loadChildren: () => import('./download/download.module').then(m => m.DownloadModule) loadChildren: () => import('./download/download.module').then(m => m.DownloadModule)