a broker system for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 satır
2.4KB

  1. var demo_loan_time_line = [
  2. { id:1, value:"received", date:"2017-08-01"},
  3. { id:2, value:"submitted", details:"by Malcolm Merlyn, Need followup", date:"2017-09-10" },
  4. { id:3, value:"valuation", details:"Exceed $1,000,000", date:"2017-12-11" },
  5. { id:5, value:"AIP", details: "reported to reginal manager already" , date:"2018-02-10" },
  6. { id:6, value:"Settled", details: "warren approved" , date:"2018-03-15" },
  7. { id:7, value:"Finished", details:"by Rosa White, poisslb new refinance in next month.", date:"2018-03-21"}
  8. ];
  9. var demo_summary_loan_counts = [
  10. { id:1, value:"Clients Acquired: 200 Convertsion rate 10%", date:"2020-10-01"},
  11. { id:2, value:"Loans applied 150 in AU Approval rate 99%", details:"by Malcolm Merlyn", date:"2020-10-01" },
  12. { id:3, value:"Referal Loans 20", details:"Exceed $1,000,000", date:"2020-10-11" },
  13. { id:5, value:"Meetings Conducted 20", details: "reported to reginal manager already" , date:"2020-10-12" },
  14. { id:6, value:"Pending Loans as of 12", details: "Not including NAB bank" , date:"2018-03-15" },
  15. { id:7, value:"To Be Finished 2", details:"by Rosa White,poisslb new refinance in next month.", date:"2020-10-21"}
  16. ];
  17. var demo_peple =
  18. [
  19. { "id": "1", "value": "John Smith" },
  20. { "id": "2", "value": "Will Carter" },
  21. { "id": "3", "value": "Joe Biden" },
  22. { "id": "4", "value": "Donald Trump" },
  23. { "id": "5", "value": "John Smith" },
  24. { "id": "6", "value": "Nick Carter" },
  25. { "id": "7", "value": "Warren Zhu" },
  26. { "id": "8", "value": "Lisa Chen" },
  27. { "id": "9", "value": "Nasriden Black" },
  28. { "id": "10", "value": "Wanti Catty" }
  29. ];
  30. var demo_clients = [
  31. { "id": "1", "value": "John Smith" },
  32. { "id": "2", "value": "Will Carter" },
  33. { "id": "3", "value": "Joe Biden" },
  34. { "id": "4", "value": "Donald Trump" },
  35. { "id": "5", "value": "John Smith" },
  36. { "id": "6", "value": "Nick Carter" },
  37. { "id": "7", "value": "Warren Zhu" },
  38. { "id": "8", "value": "Lisa Chen" },
  39. { "id": "9", "value": "Nasriden Black" },
  40. { "id": "10", "value": "Wanti Catty" }
  41. ]
  42. var trans_state1 =[
  43. [
  44. { "id": 1, "value": "Processing" },
  45. { "id": 2, "value": "Application in Progress (AIP)" },
  46. { "id": 3, "value": "Valuation" },
  47. { "id": 4, "value": "Approved" },
  48. { "id": 5, "value": "Settled" },
  49. { "id": 6, "value": "Finished" }
  50. ]
  51. ]
  52. var trans_state =[
  53. "Processing",
  54. "AIP",
  55. "Valuation",
  56. "Approved",
  57. "Settled",
  58. "Finished"
  59. ]