个人设置,自定义列显示、排序

This commit is contained in:
liweijin
2018-11-09 17:58:45 +08:00
parent c6ea0b8ef9
commit b4cfe1108b
9 changed files with 792 additions and 10 deletions
@@ -9,12 +9,21 @@ import { OperationLogsComponent } from './operation-logs/operation-logs.componen
import { DataSynchronizeComponent } from './data-synchronize/data-synchronize.component';
import { SystemManagementRouting } from './system-management-routing.module'
import { NgZorroAntdModule, NZ_I18N, zh_CN } from 'ng-zorro-antd';
import { registerLocaleData } from '@angular/common';
import zh from '@angular/common/locales/zh';
registerLocaleData(zh);
@NgModule({
imports: [
CommonModule,
SystemManagementRouting
SystemManagementRouting,
/** 导入 ng-zorro-antd 模块 **/
NgZorroAntdModule
],
/** 配置 ng-zorro-antd 国际化 **/
providers : [ { provide: NZ_I18N, useValue: zh_CN } ],
declarations: [
SystemManagementComponent,
PersonalSettingsComponent,