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
5e072af9
authored
2018-04-01 15:10:30 +0800
by
wang
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
init
1 parent
695a135d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
3 deletions
application/views/loan/prosecute.php
application/views/loan/prosecute.php
View file @
5e072af
...
...
@@ -85,7 +85,16 @@
}},//计划还款日期
{data: "currentBalance"},//当月应还
{data: "currentPeriods"},//当月期数
{data: "hasDue"},//是否逾期
// {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) {
...
...
@@ -93,7 +102,16 @@
return '';
return getNowFormatDate(new Date(parseInt(data.enterDate)));
}},//进件时间
{data: "hasClean"},//是否结清
// {data: "hasClean"},//是否结清
{data: function (data) {
if(data.hasClean == 1){
return '是';
}else if(data.hasClean == 0){
return '否';
}else{
return '';
}
}},//是否结清
{data: "idNumber"},//身份证
{data: "interestPenalty"},//罚息
// {data: "loanDate"},//放款日期
...
...
@@ -121,7 +139,20 @@
return getNowFormatDate(new Date(parseInt(data.realRepaymentDate)));
}},//计划还款日期
// {data: "repayStatus"},//还款状态
{name: "status", 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