12345678910111213141516171819202122232425 |
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { MainRoutingModule } from './main-routing.module';
- import { MainComponent } from './main.component';
- import { ShareModule } from 'src/app/share/share.module';
- import { SelectMenuComponent } from 'src/app/components/select-menu/select-menu.component';
- import { IncidentDicrectOrderModule } from 'src/app/components/incidentManagement/incident-direct-order/incident-direct-order.module';
- import { QueryRangeModule } from '../new-statistics/components/query-range/query-range.module';
- @NgModule({
- declarations: [
- MainComponent,
- SelectMenuComponent,
- ],
- imports: [
- CommonModule,
- MainRoutingModule,
- ShareModule,
- IncidentDicrectOrderModule,
- QueryRangeModule,
- ]
- })
- export class MainModule { }
|