This commit is contained in:
heqinghang
2022-02-24 14:11:57 +08:00
parent c27874bb3f
commit d198a69eef
12 changed files with 680 additions and 2 deletions

View File

@ -3,9 +3,18 @@ import { CommonModule } from '@angular/common';
import { SharedModule } from '@shared';
import { PartnerRoutingModule } from './partner-routing.module';
import { PartnerBusinessStatisticsIndexComponent } from './business-statistics/components/index/index.component';
import { ParterChannelSalesListComponent } from './channel-sales/components/list/list.component';
import { ParterChannelSalesEditComponent } from './channel-sales/components/edit/edit.component';
import { ParterLevelConfigEditComponent } from './level-config/components/edit/edit.component';
import { ParterLevelConfigListComponent } from './level-config/components/list/list.component';
const COMPONENTS: any[] = [
PartnerBusinessStatisticsIndexComponent];
PartnerBusinessStatisticsIndexComponent,
ParterChannelSalesListComponent,
ParterChannelSalesEditComponent,
ParterLevelConfigListComponent,
ParterLevelConfigEditComponent
];
@NgModule({
declarations: [...COMPONENTS],
imports: [CommonModule, PartnerRoutingModule, SharedModule]