9e466bf6 by wang

init

1 parent 31168118
......@@ -20,22 +20,29 @@
<th width="68px">操作</th>
<th>来源</th>
<th>订单编号</th>
<th>申请人</th>
<th>申请金额</th>
<th>网点名称</th>
<th>客户经理</th>
<th>确认到账日期</th>
<th>当月应还</th>
<th>当月期数</th>
<th>是否逾期</th>
<th>逾期天数</th>
<th>进件时间</th>
<th>是否结清</th>
<th>身份证</th>
<th>手机号</th>
<th>网点</th>
<th>产品名称</th>
<th>借款金额</th>
<th>罚息</th>
<th>放款日期</th>
<th>滞纳金</th>
<th>期数</th>
<th>还款方式</th>
<th>本期应还款日</th>
<th>实际还款日</th>
<th>是否逾期</th>
<th>逾期天数</th>
<th>未还总金额</th>
<th>手机号</th>
<th>计划还款日期</th>
<th>产品名称</th>
<th>申请人</th>
<th>起诉状态</th>
<th>审批金额</th>
<th>实际还款日</th>
<th>还款状态</th>
<th>总期数</th>
</tr>
</thead>
<tbody class="text-c">
......@@ -58,22 +65,87 @@
},
{data: "source"},//来源
{data: "orderNumber"},//订单编号
{data: "proposerName"},//申请人
{data: "applyAmount"},//订单编号
{name: "branchName", data: "branchName"},//网点名称
{data: "clientManager"},//客户经理
// {data: "confirmDate"},//确认到账日期
{data: function (data) {
if(!data.confirmDate)
return '';
return getNowFormatDate(new Date(parseInt(data.confirmDate)));
}},//计划还款日期
{data: "currentBalance"},//当月应还
{data: "currentPeriods"},//当月期数
// {data: "hasDue"},//是否逾期
{data: function (data) {
if(data.hasDue == 1){
return '是';
}else if(data.hasDue == 0){
return '否';
}else{
return '';
}
}},//是否逾期
{data: "dueDay"},//逾期天数
// {data: "enterDate"},//进件时间
{data: function (data) {
if(!data.enterDate)
return '';
return getNowFormatDate(new Date(parseInt(data.enterDate)));
}},//进件时间
// {data: "hasClean"},//是否结清
{data: function (data) {
if(data.hasClean == 1){
return '是';
}else if(data.hasClean == 0){
return '否';
}else{
return '';
}
}},//是否结清
{data: "idNumber"},//身份证
{data: "phoneNumber"},//手机号
{name: "branchName", data: "branchName"},//网点
{name: "productId", data: "productName"},//产品名称
{data: "createTime"},//借款金额
{data: "interestPenalty"},//罚息
// {data: "loanDate"},//放款日期
{data: function (data) {
if(!data.loanDate)
return '';
return getNowFormatDate(new Date(parseInt(data.loanDate)));
}},//放款日期
{data: "overdueFine"},//滞纳金
{data: "totalPeriods"},//期数
{data: "createTime"},//还款方式
{data: "createTime"},//本期应还款日
{data: "realRepaymentDate"},//实际还款日
{data: "hasDue"},//是否逾期
{data: "dueDay"},//逾期天数
{data: "createTime"},//未还款总金额
{data: "phoneNumber"},//手机号
// {data: "planRepaymentDate"},//计划还款日期
{data: function (data) {
if(!data.planRepaymentDate)
return '';
return getNowFormatDate(new Date(parseInt(data.planRepaymentDate)));
}},//计划还款日期
{name: "productId", data: "productName"},//产品名称
{data: "proposerName"},//申请人
{data: "prosecuteStatus"},//起诉状态
{data: "ratifyAmount"},//审批金额
// {data: "realRepaymentDate"},//实际还款日
{data: function (data) {
if(!data.realRepaymentDate)
return '';
return getNowFormatDate(new Date(parseInt(data.realRepaymentDate)));
}},//计划还款日期
// {data: "repayStatus"},//还款状态
{data: function (data) {
if(data.repayStatus == 0){
return '未还';
}else if(data.repayStatus == 1){
return '逾期未还';
}else if(data.repayStatus == 2){
return '逾期已还';
}else if(data.repayStatus == 3){
return '已还';
}else{
return '';
}
}},//计划还款日期
// {name: "repayStatus", data: "repayStatus"},//还款状态
{data: "totalPeriods"},//总期数
]
});
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!