嗨森逛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/system/system.module.ts

37 lines
1.8 KiB

4 years ago
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SystemRoutingModule } from './system-routing.module';
import {NgZorroAntdModule} from 'ng-zorro-antd';
import {SystemOrganizationComponent} from './system-organization/system-organization.component';
import {SystemRoleComponent} from './system-role/system-role.component';
import {SystemRoleShowComponent} from './system-role-show/system-role-show.component';
import {SystemUserComponent} from './system-user/system-user.component';
import {MenuComponent} from './menu/menu.component';
import {PermissionComponent} from './permission/permission.component';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {NgxNeditorModule} from '@notadd/ngx-neditor';
import {RichtextModule} from '../../common/richtext/richtext.module';
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module';
import {RegionSelectorModule} from '../../common/region-selector/region-selector.module';
import { PositionRelComponent } from './position-rel/position-rel.component';
4 years ago
import {AppCommonModule} from '../../app-common.module';
4 years ago
import { SinopecConfigComponent } from './sinopec-config/sinopec-config.component';
import { SinopecEditComponent } from './sinopec-edit/sinopec-edit.component';
4 years ago
@NgModule({
4 years ago
declarations: [SystemOrganizationComponent, SystemRoleComponent, SystemRoleShowComponent, SystemUserComponent, MenuComponent, PermissionComponent, PositionRelComponent, SinopecConfigComponent, SinopecEditComponent],
4 years ago
imports: [
CommonModule,
SystemRoutingModule,
NgZorroAntdModule,
FormsModule,
ReactiveFormsModule,
NgxNeditorModule,
RichtextModule,
BreadcrumbModule,
RegionSelectorModule,
AppCommonModule
]
4 years ago
})
export class SystemModule { }