添加业务统计

This commit is contained in:
潘晓云
2022-02-23 15:35:43 +08:00
parent 8ef9e67941
commit 85895343f5
5 changed files with 86 additions and 4 deletions

View File

@ -1,10 +1,12 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { PartnerBusinessStatisticsIndexComponent } from './business-statistics/components/index/index.component';
const routes: Routes = [];
const routes: Routes = [
{ path: 'index', component: PartnerBusinessStatisticsIndexComponent }];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PartnerRoutingModule {}
export class PartnerRoutingModule { }