2018-10-26 11:33:25 +08:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { PagesComponent } from './pages.component';
|
|
|
|
|
import { PagesRoutingModule } from './pages-routing.module'
|
|
|
|
|
|
|
|
|
|
import { ComponentsModule } from '../components/components.module'
|
|
|
|
|
|
2018-11-16 11:52:45 +08:00
|
|
|
import { BasicDataService } from './basic-data-service'
|
|
|
|
|
|
2018-10-26 11:33:25 +08:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
ComponentsModule,
|
|
|
|
|
PagesRoutingModule,
|
|
|
|
|
],
|
2018-11-16 11:52:45 +08:00
|
|
|
declarations: [PagesComponent],
|
|
|
|
|
providers: [BasicDataService]
|
2018-10-26 11:33:25 +08:00
|
|
|
})
|
|
|
|
|
export class PagesModule { }
|