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.
27 lines
1.2 KiB
27 lines
1.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';
|
|
|
|
@NgModule({
|
|
declarations: [OrderOilListComponent, OrderCouponListComponent, OrderIntegralRechargeComponent, OrderRefundListComponent, KfcOrderListComponent],
|
|
imports: [
|
|
CommonModule,
|
|
OrderManageRoutingModule,
|
|
NgZorroAntdModule,
|
|
ReactiveFormsModule,
|
|
FormsModule,
|
|
BreadcrumbModule,
|
|
AppCommonModule,
|
|
]
|
|
})
|
|
export class OrderManageModule { }
|
|
|