嗨森逛PC管理端
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.
 
 
 
 
high-web/src/app/admin/recharge-order/recharge-order.module.ts

33 lines
1.5 KiB

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RechargeOrderRoutingModule } from './recharge-order-routing.module';
import { OrderListComponent } from './order-list/order-list.component';
import { PriceListComponent } from './price-list/price-list.component';
import {NgZorroAntdModule} from '_ng-zorro-antd@9.3.0@ng-zorro-antd';
import {SeparateModule} from '../../common/separate/separate.module';
import {FormsModule, ReactiveFormsModule} from '_@angular_forms@9.0.7@@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 { OrderStatisticalComponent } from './order-statistical/order-statistical.component';
import { UserStatisticalComponent } from './user-statistical/user-statistical.component';
import { UserComponent } from './user/user.component';
import { UserEditComponent } from './user-edit/user-edit.component';
@NgModule({
declarations: [OrderListComponent, PriceListComponent, OrderStatisticalComponent, UserStatisticalComponent, UserComponent, UserEditComponent],
imports: [
CommonModule,
RechargeOrderRoutingModule,
NgZorroAntdModule,
SeparateModule,
ReactiveFormsModule,
FormsModule,
BreadcrumbModule,
RegionSelectorModule,
AppCommonModule
]
})
export class RechargeOrderModule { }