Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨建斌
/
page
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
31168118
authored
2018-04-01 15:17:51 +0800
by
wang
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
init
1 parent
2331b086
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
96 additions
and
24 deletions
application/views/loan/reminder.php
application/views/loan/reminder.php
View file @
3116811
...
...
@@ -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"
>
...
...
@@ -60,22 +67,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: "applyAmount"},//借款金额
{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: "planRepaymentDate"},//本期应还款日
{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"},//总期数
]
});
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment