main.module.ts 819 B

12345678910111213141516171819202122232425
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { MainRoutingModule } from './main-routing.module';
  4. import { MainComponent } from './main.component';
  5. import { ShareModule } from 'src/app/share/share.module';
  6. import { SelectMenuComponent } from 'src/app/components/select-menu/select-menu.component';
  7. import { IncidentDicrectOrderModule } from 'src/app/components/incidentManagement/incident-direct-order/incident-direct-order.module';
  8. import { QueryRangeModule } from '../new-statistics/components/query-range/query-range.module';
  9. @NgModule({
  10. declarations: [
  11. MainComponent,
  12. SelectMenuComponent,
  13. ],
  14. imports: [
  15. CommonModule,
  16. MainRoutingModule,
  17. ShareModule,
  18. IncidentDicrectOrderModule,
  19. QueryRangeModule,
  20. ]
  21. })
  22. export class MainModule { }