增加航班历史数据模块

This commit is contained in:
714943302@qq.com
2018-11-30 17:55:39 +08:00
parent a2751ec757
commit 701139d4c1
6 changed files with 874 additions and 8 deletions
@@ -2,11 +2,12 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HistoricalDataComponent } from './historical-data.component';
import { HistoricalDataRouting } from './historical-data-routing.module';
import { FormsModule } from '@angular/forms';
@NgModule({
imports: [
CommonModule,
HistoricalDataRouting
HistoricalDataRouting,
FormsModule
],
declarations: [HistoricalDataComponent]
})