commit
4997d6ff11
@ -1,54 +1,35 @@
|
|||||||
<section class="content-header">
|
<section class="content-header">
|
||||||
<h1>授信退款|Credit refund</h1>
|
<h1>商户欠款列表</h1>
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li>
|
<li>
|
||||||
<i class="fa fa-list-alt"></i> Transaction
|
<i class="fa fa-list-alt"></i> Transaction
|
||||||
</li>
|
</li>
|
||||||
<li class="active">授信退款|Credit refund</li>
|
<li class="active">商户欠款列表</li>
|
||||||
</ol>
|
</ol>
|
||||||
</section>
|
</section>
|
||||||
<section class="content">
|
|
||||||
|
<div class="content">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-12 analysis-nav">
|
||||||
|
<ul class="nav nav-pills">
|
||||||
|
<li ui-sref-active-eq="active">
|
||||||
|
<a ui-sref="pre_refund.refund_partner"><span>授信退款</span></a>
|
||||||
|
</li>
|
||||||
|
<li ui-sref-active="active">
|
||||||
|
<a ui-sref="pre_refund.geek_partner"> <span>RP跨境商城欠款商户</span></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="box">
|
<div class="col-sm-12">
|
||||||
<div class="box-body table-responsive">
|
<div class="nav-tabs-custom">
|
||||||
<table class="table table-bordered table-hover table-striped">
|
<div class="tab-content" ui-view>
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>商户编码</th>
|
|
||||||
<th>欠费金额(AUD)</th>
|
|
||||||
<th>最后交易时间</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr ng-repeat="log in log_risk">
|
|
||||||
<td ng-bind="log.client_moniker">
|
|
||||||
</td>
|
|
||||||
<td ng-bind="log.amount"></td>
|
|
||||||
<td ng-bind="log.transation_time |date:'yyyy-MM-dd HH:mm:ss'"></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<div class="box-footer" ng-if="log_risk.length">
|
|
||||||
<uib-pagination class="pagination"
|
|
||||||
total-items="pagination.totalCount"
|
|
||||||
boundary-links="true"
|
|
||||||
ng-model="pagination.page"
|
|
||||||
items-per-page="pagination.limit"
|
|
||||||
max-size="10"
|
|
||||||
ng-change="loadPrefund()"
|
|
||||||
previous-text="‹"
|
|
||||||
next-text="›"
|
|
||||||
first-text="«"
|
|
||||||
last-text="»"></uib-pagination>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12">Total Records:{{pagination.totalCount}};Total
|
|
||||||
Pages:{{pagination.totalPages}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
@ -0,0 +1,50 @@
|
|||||||
|
<div class="content">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-12">
|
||||||
|
<div class="box-solid">
|
||||||
|
<div class="row">
|
||||||
|
<div class="box">
|
||||||
|
<div class="box-body">
|
||||||
|
<table class="table table-bordered table-hover table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>商户编码</th>
|
||||||
|
<th>欠费金额(AUD)</th>
|
||||||
|
<th>最后交易时间</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr ng-repeat="log in log_risk">
|
||||||
|
<td ng-bind="log.client_moniker">
|
||||||
|
</td>
|
||||||
|
<td ng-bind="log.amount"></td>
|
||||||
|
<td ng-bind="log.transation_time |date:'yyyy-MM-dd HH:mm:ss'"></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="box-footer" ng-if="log_risk.length">
|
||||||
|
<uib-pagination class="pagination"
|
||||||
|
total-items="pagination.totalCount"
|
||||||
|
boundary-links="true"
|
||||||
|
ng-model="pagination.page"
|
||||||
|
items-per-page="pagination.limit"
|
||||||
|
max-size="10"
|
||||||
|
ng-change="loadPrefund()"
|
||||||
|
previous-text="‹"
|
||||||
|
next-text="›"
|
||||||
|
first-text="«"
|
||||||
|
last-text="»"></uib-pagination>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-12">Total Records:{{pagination.totalCount}};Total
|
||||||
|
Pages:{{pagination.totalPages}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
Loading…
Reference in new issue