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.
30 lines
1.2 KiB
30 lines
1.2 KiB
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { MerchantStoreRoutingModule } from './merchant-store-routing.module';
|
|
import { StoreListComponent } from './store-list/store-list.component';
|
|
import { StoreEditComponent } from './store-edit/store-edit.component';
|
|
import { StoreDetailComponent } from './store-detail/store-detail.component';
|
|
import {NgZorroAntdModule} from 'ng-zorro-antd';
|
|
import {SeparateModule} from '../../common/separate/separate.module';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module';
|
|
import { OliComponent } from './oli/oli.component';
|
|
import { OliGunComponent } from './oli-gun/oli-gun.component';
|
|
import {AppCommonModule} from "../../app-common.module";
|
|
|
|
|
|
@NgModule({
|
|
declarations: [StoreListComponent, StoreEditComponent, StoreDetailComponent, OliComponent, OliGunComponent],
|
|
imports: [
|
|
CommonModule,
|
|
MerchantStoreRoutingModule,
|
|
NgZorroAntdModule,
|
|
SeparateModule,
|
|
ReactiveFormsModule,
|
|
FormsModule,
|
|
BreadcrumbModule,
|
|
AppCommonModule
|
|
]
|
|
})
|
|
export class MerchantStoreModule { }
|
|
|