2018-10-26 11:33:25 +08:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
2018-11-12 11:27:23 +08:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
2019-01-23 10:40:58 +08:00
|
|
|
import { NgZorroAntdModule } from 'ng-zorro-antd';
|
|
|
|
|
/* 消息提示 */
|
|
|
|
|
import { ToastModule } from '../../components/toast/toast.module'
|
2018-11-15 18:29:19 +08:00
|
|
|
|
2018-10-26 11:33:25 +08:00
|
|
|
import { MainComponent } from './main.component';
|
2018-11-26 18:53:23 +08:00
|
|
|
import { MainRoutingModule } from './main-routing.module';
|
2019-02-18 17:59:22 +08:00
|
|
|
|
|
|
|
|
import { TabsetModule } from '../tabset/tabset.module'
|
2018-10-26 11:33:25 +08:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
2018-11-12 11:27:23 +08:00
|
|
|
FormsModule,
|
|
|
|
|
ReactiveFormsModule,
|
2018-11-15 18:29:19 +08:00
|
|
|
NgZorroAntdModule,
|
2019-01-23 10:40:58 +08:00
|
|
|
MainRoutingModule,
|
2019-02-18 17:59:22 +08:00
|
|
|
ToastModule,
|
|
|
|
|
TabsetModule
|
2018-10-26 11:33:25 +08:00
|
|
|
],
|
2018-11-26 18:53:23 +08:00
|
|
|
declarations: [
|
2019-02-18 17:59:22 +08:00
|
|
|
MainComponent,
|
2018-11-26 18:53:23 +08:00
|
|
|
],
|
2019-02-18 17:59:22 +08:00
|
|
|
providers: []
|
2018-10-26 11:33:25 +08:00
|
|
|
})
|
|
|
|
|
export class MainModule { }
|