| | |
| | | import { _HttpClient } from '@delon/theme/services/http/http.client'; |
| | | import { AddOrEditComponent } from './version/add-or-edit/add-or-edit.component'; |
| | | import { PipeModule } from '@core/pipe/pipe.module'; |
| | | import { FormBuilder } from '@angular/forms'; |
| | | |
| | | const COMPONENTS_NOROUNT = [ AddOrEditComponent ]; |
| | | |
| | |
| | | |
| | | @NgModule({ |
| | | imports: [ |
| | | //管道模块必须当前模块导入 |
| | | // 管道模块必须当前模块导入 |
| | | PipeModule, |
| | | CommonModule, |
| | | SharedModule, |
| | |
| | | BasicInfoComponent, |
| | | VersionComponent, |
| | | MonitorPointComponent, |
| | | ...COMPONENTS_NOROUNT, |
| | | AddOrEditComponent |
| | | ...COMPONENTS_NOROUNT |
| | | ], |
| | | providers: [ToolsService, VersionService, _HttpClient], |
| | | providers: [ToolsService, VersionService, _HttpClient, FormBuilder], |
| | | entryComponents: COMPONENTS_NOROUNT |
| | | }) |
| | | export class DevicesModule { } |