You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { OilCardRoutingModule } from './oil-card-routing.module';
|
|
import { OilCardListComponent } from './oil-card-list/oil-card-list.component';
|
|
import {NgZorroAntdModule} from 'ng-zorro-antd';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module';
|
|
import {AppCommonModule} from '../../app-common.module';
|
|
import {NgxEchartsModule} from 'ngx-echarts';
|
|
import { OilCardRecordListComponent } from './oil-card-record-list/oil-card-record-list.component';
|
|
import { OilCardOpRecordListComponent } from './oil-card-op-record-list/oil-card-op-record-list.component';
|
|
import { OilCardOrderComponent } from './oil-card-order/oil-card-order.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [OilCardListComponent, OilCardRecordListComponent, OilCardOpRecordListComponent, OilCardOrderComponent],
|
|
imports: [
|
|
CommonModule,
|
|
OilCardRoutingModule,
|
|
NgZorroAntdModule,
|
|
ReactiveFormsModule,
|
|
FormsModule,
|
|
BreadcrumbModule,
|
|
AppCommonModule,
|
|
NgxEchartsModule,
|
|
]
|
|
})
|
|
export class OilCardModule { }
|
|
|