个人设置-颜色设置、消息警示提醒开发

This commit is contained in:
liweijin
2018-11-13 14:22:31 +08:00
parent d299e0ee1d
commit 58eff4ad23
10 changed files with 308 additions and 47 deletions
@@ -16,6 +16,7 @@ import { registerLocaleData } from '@angular/common';
import zh from '@angular/common/locales/zh';
registerLocaleData(zh);
import { ColorSettingsComponent } from './personal-settings/color-settings/color-settings.component';
import { MsgAlertWarningComponent } from './personal-settings/msg-alert-warning/msg-alert-warning.component';
@NgModule({
imports: [
@@ -25,8 +26,6 @@ import { ColorSettingsComponent } from './personal-settings/color-settings/color
NgZorroAntdModule,
ColorPickerModule
],
/** 配置 ng-zorro-antd 国际化 **/
providers : [ { provide: NZ_I18N, useValue: zh_CN } ],
declarations: [
SystemManagementComponent,
PersonalSettingsComponent,
@@ -36,6 +35,9 @@ import { ColorSettingsComponent } from './personal-settings/color-settings/color
OperationLogsComponent,
DataSynchronizeComponent,
ColorSettingsComponent,
]
MsgAlertWarningComponent,
],
/** 配置 ng-zorro-antd 国际化 **/
providers : [ { provide: NZ_I18N, useValue: zh_CN } ],
})
export class SystemManagementModule { }