12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { NgModule } from '@angular/core';
- import { BrowserModule } from '@angular/platform-browser';
- import { AppComponent } from './app.component';
- import { NZ_I18N } from 'ng-zorro-antd/i18n';
- import { zh_CN } from 'ng-zorro-antd/i18n';
- import { registerLocaleData } from '@angular/common';
- import zh from '@angular/common/locales/zh';
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
- import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
- import { RouterModule } from '@angular/router';
- // http拦截器
- import { NoopInterceptor } from './share/http/http.interceptor';
- // ui组件类
- import { ZrrorUi } from './share/zrror-ui/zrror-ui';
- // 引入路由组件
- import { RoutesModule } from './routes/routes.module';
- // 图标
- import { NZ_ICONS } from 'ng-zorro-antd/icon';
- import { IconDefinition } from '@ant-design/icons-angular';
- import * as AllIcons from '@ant-design/icons-angular/icons';
- import { LayoutMapComponent } from './layout/layout-map/layout-map.component';
- const antDesignIcons = AllIcons as {
- [key: string]: IconDefinition;
- };
- const icons: IconDefinition[] = Object.keys(antDesignIcons).map(
- (key) => antDesignIcons[key]
- );
- registerLocaleData(zh);
- @NgModule({
- declarations: [AppComponent, LayoutMapComponent],
- imports: [
- BrowserModule,
- FormsModule,
- ReactiveFormsModule,
- HttpClientModule,
- BrowserAnimationsModule,
- // ui 组件
- ...ZrrorUi.uiArr,
- // 路由模块
- RoutesModule,
- // angular 路由模块 使用hash路由
- RouterModule.forRoot([], { useHash: true }),
- ],
- providers: [
- { provide: NZ_I18N, useValue: zh_CN },
- { provide: NZ_ICONS, useValue: icons },
- { provide: HTTP_INTERCEPTORS, useClass: NoopInterceptor, multi: true },
- ],
- bootstrap: [AppComponent],
- })
- export class AppModule {}
|