添加业务统计

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

@ -2,10 +2,12 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from '@shared';
import { PartnerRoutingModule } from './partner-routing.module';
import { PartnerBusinessStatisticsIndexComponent } from './business-statistics/components/index/index.component';
const COMPONENTS: any[] = [];
const COMPONENTS: any[] = [
PartnerBusinessStatisticsIndexComponent];
@NgModule({
declarations: [...COMPONENTS],
imports: [CommonModule, PartnerRoutingModule, SharedModule]
})
export class PartnerModule {}
export class PartnerModule { }