Angular Web App
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
1.8 KiB

  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-notifications',
  4. templateUrl: './notifications.component.html',
  5. styleUrls: ['./notifications.component.scss']
  6. })
  7. export class NotificationsComponent implements OnInit {
  8. notifications: Array<{
  9. text: string,
  10. timeStamp: string,
  11. description?: string,
  12. redirectionUrl?: string,
  13. }> = [{
  14. text: 'New name application has been submitted',
  15. description: 'A new Applicant in the company name Kimao has applied for an appeal',
  16. timeStamp: '1 hour ago',
  17. }, {
  18. text: 'Entity Corp. flagged for investigation',
  19. timeStamp: '2 days ago',
  20. redirectionUrl: '/tabs/investigate-business-entities-and-individuals',
  21. }, {
  22. text: 'Request to create a panel',
  23. timeStamp: '1 day ago',
  24. redirectionUrl: '/tabs/investigate-business-entities-and-individuals',
  25. }, {
  26. text: 'Review non-compliance for Entity Corp.',
  27. timeStamp: '4 hours ago',
  28. redirectionUrl: '/tabs/investigate-business-entities-and-individuals',
  29. }, {
  30. text: 'Concur non-compliance for Entity Corp.',
  31. timeStamp: '2 hours ago',
  32. redirectionUrl: '/tabs/investigate-business-entities-and-individuals',
  33. }, {
  34. text: 'Investigation complete',
  35. timeStamp: '1 hours ago',
  36. redirectionUrl: '/tabs/investigate-business-entities-and-individuals',
  37. }, {
  38. text: 'New name application has been submitted',
  39. description: 'A new Applicant in the company name Kimao has applied for an appeal',
  40. timeStamp: '1 hour ago',
  41. }, {
  42. text: 'Request to create a new Committee',
  43. timeStamp: '2 hours ago',
  44. }];
  45. constructor() { }
  46. ngOnInit(): void {
  47. }
  48. }