diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-10-11 11:21:34 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-10-11 11:21:45 +0800 |
commit | 3a32288d1a4053e3bf561766c35cf27d5a938b38 (patch) | |
tree | a0178d79b5a6f339222769c6aed9fc716a306744 /usecaseui-portal/src/app/shared/components/notification/notification.component.ts | |
parent | 8bc1e72e2874e5734965fd4647dc7fb682d4dd98 (diff) |
feat: extract the notification bar of the onboard page
Change-Id: I4fcc0a1a5d4372d8b95127e2baa125e95d2c006d
Issue-ID: USECASEUI-307
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/shared/components/notification/notification.component.ts')
-rw-r--r-- | usecaseui-portal/src/app/shared/components/notification/notification.component.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/shared/components/notification/notification.component.ts b/usecaseui-portal/src/app/shared/components/notification/notification.component.ts index 031b161d..00ccf90b 100644 --- a/usecaseui-portal/src/app/shared/components/notification/notification.component.ts +++ b/usecaseui-portal/src/app/shared/components/notification/notification.component.ts @@ -9,7 +9,13 @@ import { NzNotificationService } from 'ng-zorro-antd'; export class NotificationComponent implements OnInit { @ViewChild('notificationModel')notificationModel: any; - notificationAttributes: object = null; + notificationAttributes: { + title: string, + imgPath: string, + action: string, + status: string, + name: string + }; constructor(private notification: NzNotificationService) { } |