Broker System for Supercredit
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

113 lignes
2.6KB

  1. import { faChartArea, faIdCard, faIdCardAlt, faMoneyCheck,
  2. faUniversity, faUserCircle, faUserTie } from '@fortawesome/free-solid-svg-icons';
  3. export const mainMenuItems: any[] = [
  4. {
  5. text: '',
  6. fa: faUniversity,
  7. url: './#canvas'
  8. },
  9. {
  10. text: 'SFM',
  11. icon: 'more-vertical',
  12. items: [
  13. { text: 'Summary', fa: faChartArea, url: './#dashboard'},
  14. { text: '--', separator: 'true' },
  15. { text: 'Logout', icon: 'logout', url: './#login'}]
  16. },
  17. {
  18. text: 'Loans',
  19. icon: 'dollar',
  20. items: [
  21. { text: 'Start New Loan', icon: 'plus', url: './#edit-loan/' },
  22. { text: 'List All New', icon: 'table' , url: './#list-all-loans' },
  23. ]
  24. },
  25. {
  26. text: 'Reward',
  27. icon: 'percent',
  28. items: [
  29. { text: 'List All', icon: 'table', url: '#' },
  30. { text: 'By Broker', icon: 'table', url: '#' },
  31. { text: '--', separator: 'true' },
  32. { text: 'Lender Monthly Uploads', icon: 'attachment' , url: './#uploads'}
  33. ]
  34. },
  35. {
  36. text: 'Clients',
  37. icon: 'user',
  38. items: [
  39. { text: 'Add ', icon: 'plus', url: '#' },
  40. { text: 'List All', fa: faIdCard },
  41. { text: '--', separator: 'true' },
  42. { text: 'Search' , icon: 'search'},
  43. { text: '--', separator: 'true' },
  44. { text: 'Broadcast', icon: 'email' },
  45. ]
  46. },
  47. {
  48. text: 'Brokers',
  49. fa: faUserCircle,
  50. items: [
  51. { text: 'Add ', icon: 'plus', url: '#' },
  52. { text: 'List All', fa: faIdCardAlt},
  53. { text: '--', separator: 'true' },
  54. { text: 'Search' , icon: 'search'},
  55. { text: '--', separator: 'true' },
  56. { text: 'Broadcast' , icon : 'email'},
  57. { text: '--', separator: 'true' },
  58. { text: 'UnPaid', fa : faMoneyCheck },
  59. ]
  60. }
  61. ];
  62. export const brokerMenuItems: any[] = [
  63. {
  64. text: '|',
  65. fa: faUserTie,
  66. },
  67. {
  68. text: 'My Loans',
  69. icon: 'categorize',
  70. url: './#broker-loan-list'
  71. },
  72. {
  73. text: 'My Earnings',
  74. icon: 'dollar',
  75. url: './#broker-reward'
  76. },
  77. {
  78. text: 'Profile',
  79. fa: faIdCard,
  80. url: './#broker-profile'
  81. },
  82. ];
  83. export const userMenuItems: any[] = [
  84. {
  85. text: '|',
  86. fa: faUserCircle,
  87. },
  88. {
  89. text: 'My Loans',
  90. icon: 'categorize',
  91. url: './#client-loan-list'
  92. },
  93. {
  94. text: 'Profile',
  95. fa: faIdCard,
  96. url: './#client-profile'
  97. },
  98. ];
  99. export const peopleMenuItems: any[] = [
  100. {
  101. text: 'people',
  102. fa: faUniversity,
  103. url: './#canvas'
  104. },
  105. ];