Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Aiden Xu
2016-08-09 17:44:31 +0800
Commit
9dd3e281d26288af8cf745d7979cfb4acaeece53
1 parent
ae907f25
分期订单
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
public/js/home/repayment.js
public/js/home/repayment.js
View file @
9dd3e28
...
...
@@ -62,7 +62,7 @@ Repayment.prototype._formatCurrency = function(amount) {
var
ret
=
'0.00'
;
if
(
m
&&
m
.
length
===
3
)
{
ret
=
fixedPart
+
(
floatPart
||
'00'
);
ret
=
fixedPart
+
'.'
+
(
floatPart
||
'00'
);
}
return
ret
;
...
...
Please
register
or
login
to post a comment