Authored by Aiden Xu

文案和计算规则修改

... ... @@ -61,7 +61,7 @@
本金:¥{{currPrincipalAmt}}
{{#if currFeeAmt}}
服务费:¥{{currFeeAmt}}
手续费:¥{{currFeeAmt}}
{{/if}}
{{#greaterThanZero currDealyFeeAmt}}
... ...
... ... @@ -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>
... ...
... ... @@ -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);
... ...