|
- var demo_loan_time_line = [
- { id:1, value:"received", date:"2017-08-01"},
- { id:2, value:"submitted", details:"by Malcolm Merlyn, Need followup", date:"2017-09-10" },
- { id:3, value:"valuation", details:"Exceed $1,000,000", date:"2017-12-11" },
- { id:5, value:"AIP", details: "reported to reginal manager already" , date:"2018-02-10" },
- { id:6, value:"Settled", details: "warren approved" , date:"2018-03-15" },
- { id:7, value:"Finished", details:"by Rosa White, poisslb new refinance in next month.", date:"2018-03-21"}
- ];
-
- var demo_summary_loan_counts = [
- { id:1, value:"Clients Acquired: 200 Convertsion rate 10%", date:"2020-10-01"},
- { id:2, value:"Loans applied 150 in AU Approval rate 99%", details:"by Malcolm Merlyn", date:"2020-10-01" },
- { id:3, value:"Referal Loans 20", details:"Exceed $1,000,000", date:"2020-10-11" },
- { id:5, value:"Meetings Conducted 20", details: "reported to reginal manager already" , date:"2020-10-12" },
- { id:6, value:"Pending Loans as of 12", details: "Not including NAB bank" , date:"2018-03-15" },
- { id:7, value:"To Be Finished 2", details:"by Rosa White,poisslb new refinance in next month.", date:"2020-10-21"}
- ];
-
- var demo_peple =
- [
- { "id": "1", "value": "John Smith" },
- { "id": "2", "value": "Will Carter" },
- { "id": "3", "value": "Joe Biden" },
- { "id": "4", "value": "Donald Trump" },
- { "id": "5", "value": "John Smith" },
- { "id": "6", "value": "Nick Carter" },
- { "id": "7", "value": "Warren Zhu" },
- { "id": "8", "value": "Lisa Chen" },
- { "id": "9", "value": "Nasriden Black" },
- { "id": "10", "value": "Wanti Catty" }
- ];
-
- var demo_clients = [
- { "id": "1", "value": "John Smith" },
- { "id": "2", "value": "Will Carter" },
- { "id": "3", "value": "Joe Biden" },
- { "id": "4", "value": "Donald Trump" },
- { "id": "5", "value": "John Smith" },
- { "id": "6", "value": "Nick Carter" },
- { "id": "7", "value": "Warren Zhu" },
- { "id": "8", "value": "Lisa Chen" },
- { "id": "9", "value": "Nasriden Black" },
- { "id": "10", "value": "Wanti Catty" }
- ]
-
- var trans_state1 =[
- [
- { "id": 1, "value": "Processing" },
- { "id": 2, "value": "Application in Progress (AIP)" },
- { "id": 3, "value": "Valuation" },
- { "id": 4, "value": "Approved" },
- { "id": 5, "value": "Settled" },
- { "id": 6, "value": "Finished" }
- ]
- ]
-
- var trans_state =[
- "Processing",
- "AIP",
- "Valuation",
- "Approved",
- "Settled",
- "Finished"
- ]
|