feat(commonTable): editable field

This commit is contained in:
禾几海
2020-08-28 11:25:45 +08:00
parent 22480569a2
commit 449adc4cee
5 changed files with 106 additions and 10 deletions

View File

@@ -2,14 +2,16 @@ import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {CommonTableComponent} from './common-table.component';
import {
NzButtonModule,
NzCardModule,
NzDividerModule,
NzIconModule, NzOutletModule, NzPopconfirmModule,
NzTableModule,
NzIconModule, NzModalModule, NzOutletModule, NzPopconfirmModule, NzSwitchModule,
NzTableModule, NzTagModule,
NzToolTipModule,
NzTypographyModule
} from 'ng-zorro-antd';
import {FormsModule} from '@angular/forms';
import {DragDropModule} from '@angular/cdk/drag-drop'
@NgModule({
declarations: [
@@ -27,7 +29,13 @@ import {
NzCardModule,
NzIconModule,
NzOutletModule,
NzPopconfirmModule
NzPopconfirmModule,
NzModalModule,
NzTagModule,
NzSwitchModule,
FormsModule,
DragDropModule,
NzButtonModule
]
})
export class CommonTableModule {