app.module.ts 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import { NgModule } from '@angular/core';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { AppComponent } from './app.component';
  4. import { NZ_I18N } from 'ng-zorro-antd/i18n';
  5. import { zh_CN } from 'ng-zorro-antd/i18n';
  6. import { registerLocaleData } from '@angular/common';
  7. import zh from '@angular/common/locales/zh';
  8. import { FormsModule, ReactiveFormsModule } from '@angular/forms';
  9. import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
  10. import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
  11. import { RouterModule } from '@angular/router';
  12. // http拦截器
  13. import { NoopInterceptor } from './share/http/http.interceptor';
  14. // ui组件类
  15. import { ZrrorUi } from './share/zrror-ui/zrror-ui';
  16. // 引入路由组件
  17. import { RoutesModule } from './routes/routes.module';
  18. // 图标
  19. import { NZ_ICONS } from 'ng-zorro-antd/icon';
  20. import { IconDefinition } from '@ant-design/icons-angular';
  21. import * as AllIcons from '@ant-design/icons-angular/icons';
  22. import { LayoutMapComponent } from './layout/layout-map/layout-map.component';
  23. const antDesignIcons = AllIcons as {
  24. [key: string]: IconDefinition;
  25. };
  26. const icons: IconDefinition[] = Object.keys(antDesignIcons).map(
  27. (key) => antDesignIcons[key]
  28. );
  29. registerLocaleData(zh);
  30. @NgModule({
  31. declarations: [AppComponent, LayoutMapComponent],
  32. imports: [
  33. BrowserModule,
  34. FormsModule,
  35. ReactiveFormsModule,
  36. HttpClientModule,
  37. BrowserAnimationsModule,
  38. // ui 组件
  39. ...ZrrorUi.uiArr,
  40. // 路由模块
  41. RoutesModule,
  42. // angular 路由模块 使用hash路由
  43. RouterModule.forRoot([], { useHash: true }),
  44. ],
  45. providers: [
  46. { provide: NZ_I18N, useValue: zh_CN },
  47. { provide: NZ_ICONS, useValue: icons },
  48. { provide: HTTP_INTERCEPTORS, useClass: NoopInterceptor, multi: true },
  49. ],
  50. bootstrap: [AppComponent],
  51. })
  52. export class AppModule {}