import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { OrderRoutingModule } from './order-routing.module'; import { OrderListComponent } from './order-list/order-list.component'; import {NgZorroAntdModule} from 'ng-zorro-antd'; import {SeparateModule} from '../../common/separate/separate.module'; import {FormsModule, ReactiveFormsModule} from '@angular/forms'; import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module'; import {RegionSelectorModule} from '../../common/region-selector/region-selector.module'; import {AppCommonModule} from '../../app-common.module'; import { OrderDetailComponent } from './order-detail/order-detail.component'; import { OrderCouponsComponent } from './order-coupons/order-coupons.component'; import { OrderCouponComponent } from './order-coupon/order-coupon.component'; import {OrderTListComponent} from './order-Tlist/order-Tlist.component'; import { OrderKListComponent } from './order-k-list/order-k-list.component'; import {OrderCListComponent} from './order-c-list/order-c-list.component'; import { OrderHListComponent } from './order-h-list/order-h-list.component'; import { OrderAgentComponent } from './order-agent/order-agent.component'; import { PreOrderComponent } from './pre-order/pre-order.component'; import { PackageRecordListComponent } from './package-record-list/package-record-list.component'; import { DiscountUseConditionListComponent } from './discount-use-condition-list/discount-use-condition-list.component'; import {DicountPackageOrderListComponent} from "./dicount-package-order-list/dicount-package-order-list.component"; import {NzSpaceModule} from "ng-zorro-antd/space"; import { OilStationOrderComponent } from './oil-station-order/oil-station-order.component'; import { OrderCouponListComponent } from './order-coupon-list/order-coupon-list.component'; @NgModule({ declarations: [OrderListComponent, OrderDetailComponent, OrderCouponsComponent, OrderCouponComponent , OrderTListComponent, OrderKListComponent , OrderCListComponent, OrderHListComponent, OrderAgentComponent, PreOrderComponent, PackageRecordListComponent, DiscountUseConditionListComponent, DicountPackageOrderListComponent, OilStationOrderComponent, OrderCouponListComponent], imports: [ CommonModule, OrderRoutingModule, NgZorroAntdModule, SeparateModule, ReactiveFormsModule, FormsModule, BreadcrumbModule, RegionSelectorModule, AppCommonModule, NzSpaceModule ] }) export class OrderModule { }