...
|
...
|
@@ -32,46 +32,47 @@ |
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="detail-list-container">
|
|
|
<ul class="installment-list repay-list">
|
|
|
{{#each packageList}}
|
|
|
<li>
|
|
|
{{#isPaymentIncomplete status}}
|
|
|
<input id="sort-{{@index}}" type="checkbox"
|
|
|
class="installment-check-btn installment-term"
|
|
|
data-order-code="{{../orderCode}}"
|
|
|
data-sort-id="{{sortId}}"
|
|
|
data-fee="{{currFeeAmt}}"
|
|
|
data-delay-fee="{{currDealyFeeAmt}}"
|
|
|
data-amount="{{currPrincipalAmt}}"/>
|
|
|
{{/isPaymentIncomplete}}
|
|
|
<label for="sort-{{@index}}">
|
|
|
{{#isPaymentComplete status}}
|
|
|
<span class="detail-index">{{sortId}}.</span>
|
|
|
{{/isPaymentComplete}}
|
|
|
|
|
|
<ul class="installment-list repay-list">
|
|
|
{{#each packageList}}
|
|
|
<li>
|
|
|
{{#isPaymentIncomplete status}}
|
|
|
<input id="sort-{{@index}}" type="checkbox"
|
|
|
class="installment-check-btn installment-term"
|
|
|
data-order-code="{{../orderCode}}"
|
|
|
data-sort-id="{{sortId}}"
|
|
|
data-fee="{{currFeeAmt}}"
|
|
|
data-delay-fee="{{currDealyFeeAmt}}"
|
|
|
data-amount="{{currPrincipalAmt}}"/>
|
|
|
{{/isPaymentIncomplete}}
|
|
|
<label for="sort-{{@index}}">
|
|
|
{{#isPaymentComplete status}}
|
|
|
<span class="detail-index">{{sortId}}.</span>
|
|
|
{{/isPaymentComplete}}
|
|
|
<span class="amount">¥{{currAmt}}</span>
|
|
|
<div class="fee">
|
|
|
{{currDate}}
|
|
|
本金:¥{{currPrincipalAmt}}
|
|
|
|
|
|
<span class="amount">¥{{currAmt}}</span>
|
|
|
<div class="fee">
|
|
|
{{currDate}}
|
|
|
本金:¥{{currPrincipalAmt}}
|
|
|
{{#if currFeeAmt}}
|
|
|
服务费:¥{{currFeeAmt}}
|
|
|
{{/if}}
|
|
|
|
|
|
{{#if currFeeAmt}}
|
|
|
服务费:¥{{currFeeAmt}}
|
|
|
{{/if}}
|
|
|
|
|
|
{{#if currDealyFeeAmt}}
|
|
|
逾期服务费:¥{{currDealyFeeAmt}}
|
|
|
{{/if}}
|
|
|
</div>
|
|
|
<div class="status">
|
|
|
{{desc}}
|
|
|
<span class="iconfont notice"></span>
|
|
|
</div>
|
|
|
<div class="clearfix"></div>
|
|
|
</label>
|
|
|
</li>
|
|
|
{{/each}}
|
|
|
</ul>
|
|
|
{{#if currDealyFeeAmt}}
|
|
|
逾期服务费:¥{{currDealyFeeAmt}}
|
|
|
{{/if}}
|
|
|
</div>
|
|
|
<div class="status">
|
|
|
{{desc}}
|
|
|
<span class="iconfont notice"></span>
|
|
|
</div>
|
|
|
<div class="clearfix"></div>
|
|
|
</label>
|
|
|
</li>
|
|
|
{{/each}}
|
|
|
</ul>
|
|
|
</div>
|
|
|
{{/order}}
|
|
|
{{> installment/repayment-bottom}}
|
|
|
</div>
|
...
|
...
|
|