diff --git a/src/app/admin/order-manage/order-manage-routing.module.ts b/src/app/admin/order-manage/order-manage-routing.module.ts index aa660d0..097fdd5 100644 --- a/src/app/admin/order-manage/order-manage-routing.module.ts +++ b/src/app/admin/order-manage/order-manage-routing.module.ts @@ -4,6 +4,7 @@ import {OrderOilListComponent} from './order-oil/order-oil-list/order-oil-list.c 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'; const routes: Routes = [ diff --git a/src/app/admin/order-manage/order-manage.module.ts b/src/app/admin/order-manage/order-manage.module.ts index b7ed2d2..9badee3 100644 --- a/src/app/admin/order-manage/order-manage.module.ts +++ b/src/app/admin/order-manage/order-manage.module.ts @@ -10,6 +10,7 @@ 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],