| | |
| | | import { CommonModule } from '@angular/common'; |
| | | import { RouterModule, Routes } from '@angular/router'; |
| | | import { SharedModule } from '@shared/shared.module'; |
| | | |
| | | import { AccountComponent } from './account/account.component'; |
| | | import { AccountEditComponent } from './account/account-edit/account-edit.component'; |
| | | import { OrganizationComponent } from './organization/organization.component'; |
| | | import { PipeModule } from '@core/pipe/pipe.module'; |
| | | import { PipeModule } from '@business/pipe/pipe.module'; |
| | | import { OrganizationEditComponent } from './organization/organization-edit/organization-edit.component'; |
| | | import { ToolsService } from '@core/services/tools.service'; |
| | | import { OrganizationService } from 'app/routes/systems/organization/organization.service'; |
| | | import { AreacodeService } from '@core/services/areacode.service'; |
| | | import { ToolsService } from '@business/services/util/tools.service'; |
| | | import { OrganizationService } from '@business/services/http/organization.service'; |
| | | import { AreacodeService } from '@business/services/http/areacode.service'; |
| | | import { OrganizationConfigComponent } from './organization/organization-config/organization-config.component'; |
| | | import { OrganizationListComponent } from './organization/organization-list/organization-list.component'; |
| | | |
| | | const routes: Routes = [ |
| | | { |
| | |
| | | ...COMPONENTS_NOROUNT, |
| | | AccountComponent, |
| | | AccountEditComponent, |
| | | OrganizationComponent |
| | | OrganizationComponent, |
| | | OrganizationConfigComponent, |
| | | OrganizationListComponent |
| | | ], |
| | | providers: [ToolsService, OrganizationService, _HttpClient, FormBuilder, AreacodeService], |
| | | entryComponents: COMPONENTS_NOROUNT |