33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
/*
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2022-01-25 20:23:54
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-02-11 17:20:49
|
|
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\insurance-table\\insurance-table.module.ts
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
*/
|
|
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { NzInputNumberModule } from 'ng-zorro-antd/input-number';
|
|
import { NzTableModule } from 'ng-zorro-antd/table';
|
|
import { InsuranceTableComponent } from './insurance-table.component';
|
|
import { NzPopconfirmModule } from 'ng-zorro-antd/popconfirm';
|
|
import { SHARED_ZORRO_MODULES } from '../../shared-zorro.module';
|
|
import { SHARED_DELON_MODULES } from '../../shared-delon.module';
|
|
const COMPONENTS = [InsuranceTableComponent,];
|
|
const COMPONENTSs = [
|
|
NzTableModule,
|
|
NzInputNumberModule,
|
|
NzPopconfirmModule,
|
|
];
|
|
|
|
@NgModule({
|
|
declarations: COMPONENTS,
|
|
imports: [CommonModule, FormsModule,COMPONENTSs,SHARED_ZORRO_MODULES, SHARED_DELON_MODULES],
|
|
exports: COMPONENTS
|
|
})
|
|
export class InsuranceTableModule {}
|