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.
28 lines
995 B
28 lines
995 B
3 years ago
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
import { ConfigManageRoutingModule } from './config-manage-routing.module';
|
||
|
import { GoodsTypeComponent } from './goods-type/goods-type.component';
|
||
|
import { BrandComponent } from './brand/brand.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';
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [GoodsTypeComponent, BrandComponent],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
ConfigManageRoutingModule,
|
||
|
NgZorroAntdModule,
|
||
|
SeparateModule,
|
||
|
ReactiveFormsModule,
|
||
|
FormsModule,
|
||
|
BreadcrumbModule,
|
||
|
RegionSelectorModule
|
||
|
]
|
||
|
})
|
||
|
export class ConfigManageModule { }
|