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
9 years ago
Commit
c419fe79b8af4e7bb151b65c466923e696998c30
1 parent
5c29d209
文案和计算规则修改
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
apps/home/views/action/installment/order-detail.hbs
apps/home/views/partial/installment/repayment-bottom.hbs
public/js/home/installment.order-detail.page.js
apps/home/views/action/installment/order-detail.hbs
View file @
c419fe7
...
...
@@ -61,7 +61,7 @@
本金:¥
{{
currPrincipalAmt
}}
{{#if
currFeeAmt
}}
服务
费:¥
{{
currFeeAmt
}}
手续
费:¥
{{
currFeeAmt
}}
{{/if}}
{{#
greaterThanZero
currDealyFeeAmt
}}
...
...
apps/home/views/partial/installment/repayment-bottom.hbs
View file @
c419fe7
...
...
@@ -15,7 +15,7 @@
<input
id=
"repayment-total"
type=
"checkbox"
class=
"installment-check-btn"
{{#if
isAllChecked
}}
checked
{{/if}}
/>
<label
for=
"repayment-total"
>
<p
class=
"repay-price"
>
待支付:
<span>
¥
<span
class=
"curr-amt"
>
{{
round
currAmtCount
}}
</span></span></p>
<p
class=
"serve-price"
{{#if
isCurrFee
}}
style=
"display:block;"
{{/if}}
>
含服务费¥
<span
class=
"curr-fee"
>
{{
round
currFeeCount
}}
</span></p>
<p
class=
"serve-price"
{{#if
isCurrFee
}}
style=
"display:block;"
{{/if}}
>
含
逾期
服务费¥
<span
class=
"curr-fee"
>
{{
round
currFeeCount
}}
</span></p>
</label>
<a
href=
''
class=
"repayment-btn"
>
立即还款
</a>
</div>
...
...
public/js/home/installment.order-detail.page.js
View file @
c419fe7
...
...
@@ -14,7 +14,7 @@ var repayment = new Repayment({
orderCode
:
input
.
data
(
'orderCode'
),
termNo
:
input
.
data
(
'sortId'
),
amount
:
parseFloat
(
input
.
data
(
'amount'
)),
fee
:
parseFloat
(
input
.
data
(
'
fee'
))
+
parseFloat
(
input
.
data
(
'
delayFee'
))
fee
:
parseFloat
(
input
.
data
(
'delayFee'
))
};
ret
.
push
(
data
);
...
...
Please
register
or
login
to post a comment