edit
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* @Description :
|
||||
* @Description :
|
||||
* @Version : 1.0
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-01-06 09:24:00
|
||||
@ -10,22 +10,14 @@
|
||||
*/
|
||||
|
||||
import { NgModule, Type } from '@angular/core';
|
||||
import { SharedModule } from '@shared';
|
||||
import { InsuranceTableModule, SharedModule } from '@shared';
|
||||
import { insuranceManagementListComponent } from './components/list/list.component';
|
||||
import { insuranceManagementSetComponent } from './components/set/set.component';
|
||||
import { InsuranceManagementRoutingModule } from './insurance-management-routing.module';
|
||||
const COMPONENTS: Type<void>[] = [
|
||||
insuranceManagementListComponent,
|
||||
insuranceManagementSetComponent,
|
||||
|
||||
];
|
||||
const COMPONENTS: Type<void>[] = [insuranceManagementListComponent, insuranceManagementSetComponent];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
SharedModule,
|
||||
InsuranceManagementRoutingModule,
|
||||
|
||||
],
|
||||
declarations: COMPONENTS,
|
||||
imports: [SharedModule, InsuranceManagementRoutingModule, InsuranceTableModule],
|
||||
declarations: COMPONENTS
|
||||
})
|
||||
export class InsuranceManagementModule { }
|
||||
export class InsuranceManagementModule {}
|
||||
|
||||
Reference in New Issue
Block a user