You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { IndexRoutingModule } from './index-routing.module';
|
|
import { IndexComponent } from './index/index.component';
|
|
import {NgxEchartsModule} from 'ngx-echarts';
|
|
import {SystemRoutingModule} from '../system/system-routing.module';
|
|
import {NgZorroAntdModule} from 'ng-zorro-antd';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {NgxNeditorModule} from '@notadd/ngx-neditor';
|
|
import {RichtextModule} from '../../common/richtext/richtext.module';
|
|
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module';
|
|
import {RegionSelectorModule} from '../../common/region-selector/region-selector.module';
|
|
import {AppCommonModule} from '../../app-common.module';
|
|
import { TestComponent } from './test/test.component';
|
|
import {NzSpaceModule} from 'ng-zorro-antd/space';
|
|
import { OrderStatisticsComponent } from './order-statistics/order-statistics.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [IndexComponent, TestComponent, OrderStatisticsComponent],
|
|
imports: [
|
|
CommonModule,
|
|
SystemRoutingModule,
|
|
NgZorroAntdModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
NgxNeditorModule,
|
|
RichtextModule,
|
|
BreadcrumbModule,
|
|
RegionSelectorModule,
|
|
NgxEchartsModule,
|
|
IndexRoutingModule,
|
|
AppCommonModule,
|
|
NzSpaceModule
|
|
]
|
|
})
|
|
export class IndexModule { }
|
|
|