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.
49 lines
3.2 KiB
49 lines
3.2 KiB
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { OrderManageRoutingModule } from './order-manage-routing.module';
|
|
import { OrderOilListComponent } from './order-oil/order-oil-list/order-oil-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 { OrderCouponListComponent } from './order-coupon/order-coupon-list/order-coupon-list.component';
|
|
import { OrderIntegralRechargeComponent } from './order-integral-recharge/order-integral-recharge.component';
|
|
import { OrderRefundListComponent } from './order-refund-list/order-refund-list.component';
|
|
import {KfcOrderListComponent} from './kfc-order/kfc-order-list/kfc-order-list.component';
|
|
import { StarbucksOrderListComponent } from './starbucks-order/starbucks-order-list/starbucks-order-list.component';
|
|
import { MemberChargeOrderListComponent } from './member-charge-order/member-charge-order-list/member-charge-order-list.component';
|
|
import {PreOrderComponent} from './pre-order/pre-order.component';
|
|
import {DicountPackageOrderListComponent} from './dicount-package-order-list/dicount-package-order-list.component';
|
|
import {DiscountUseConditionListComponent} from './discount-use-condition-list/discount-use-condition-list.component';
|
|
import {SeparateModule} from '../../common/separate/separate.module';
|
|
import {NzSpaceModule} from 'ng-zorro-antd/space';
|
|
import {RegionSelectorModule} from '../../common/region-selector/region-selector.module';
|
|
import {MobileRechargeOrderListComponent} from './mobile-recharge-order-list/mobile-recharge-order-list.component';
|
|
import { HltChargeOrderComponent } from './hlt-charge-order/hlt-charge-order.component';
|
|
import { GoodsOrderComponent } from './goods-order/goods-order.component';
|
|
import {PreviewImageModule} from "../../common/preview-image/preview-image.module";
|
|
import { GoodsChildOrderComponent } from './goods-child-order/goods-child-order.component';
|
|
import { OrderOilCardComponent } from './order-oil-card/order-oil-card.component';
|
|
import {GiveCouponsComponent} from './give-coupons/give-coupons.component';
|
|
import {ApiMerOrderListComponent} from './api-mer-order-list/api-mer-order-list.component';
|
|
|
|
@NgModule({
|
|
declarations: [OrderOilListComponent, OrderCouponListComponent, OrderIntegralRechargeComponent, OrderRefundListComponent, KfcOrderListComponent, StarbucksOrderListComponent, MemberChargeOrderListComponent, MobileRechargeOrderListComponent, PreOrderComponent,DicountPackageOrderListComponent, MemberChargeOrderListComponent, DiscountUseConditionListComponent, HltChargeOrderComponent, GoodsOrderComponent, GoodsChildOrderComponent, OrderOilCardComponent, ApiMerOrderListComponent,
|
|
GiveCouponsComponent
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
OrderManageRoutingModule,
|
|
NgZorroAntdModule,
|
|
SeparateModule,
|
|
ReactiveFormsModule,
|
|
FormsModule,
|
|
BreadcrumbModule,
|
|
RegionSelectorModule,
|
|
AppCommonModule,
|
|
NzSpaceModule,
|
|
PreviewImageModule
|
|
]
|
|
})
|
|
export class OrderManageModule { }
|
|
|