parent
9370086ce6
commit
bdfd997d05
@ -0,0 +1,59 @@
|
|||||||
|
<section class="content-header">
|
||||||
|
<h1>批量支付宝线上报备</h1>
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<i class="fa fa-cog"></i> Basic Config
|
||||||
|
</li>
|
||||||
|
<li><a ui-sref="^">Dev Tools</a></li>
|
||||||
|
<li class="active">批量支付宝线上报备</li>
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
<section class="content">
|
||||||
|
<div class="box">
|
||||||
|
<button class="btn btn-primary" ng-click="registerOnlineGMS()">register</button> <label ng-hide="selecttotal" style="padding-left: 30px">请稍后</label>
|
||||||
|
</div>
|
||||||
|
<div class="row" ng-if="need_register_merchant">
|
||||||
|
<span>需要报备的商户编码</span><p ng-bind="need_register_merchant"></p>
|
||||||
|
</div>
|
||||||
|
<div class="row" ng-if="success_register_merchant">
|
||||||
|
<span>成功报备的商户编码</span><p ng-bind="success_register_merchant"></p>
|
||||||
|
</div>
|
||||||
|
<div class="box-body table-responsive" ng-if="fail_register_merchant">
|
||||||
|
<span>注册失败的商户编码</span>
|
||||||
|
<table class="table table-bordered table-hover table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>client_moniker</th>
|
||||||
|
<th>失败原因</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr ng-repeat="client in fail_register_merchant">
|
||||||
|
<td>
|
||||||
|
{{client.client_moniker}}
|
||||||
|
</td>
|
||||||
|
<td ng-bind="client.return_msg"></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="box-body table-responsive" ng-if="less_info_merchant">
|
||||||
|
<span>缺少信息的商户编码</span>
|
||||||
|
<table class="table table-bordered table-hover table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>client_moniker</th>
|
||||||
|
<th>缺少信息</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr ng-repeat="client in less_info_merchant">
|
||||||
|
<td>
|
||||||
|
{{client.client_moniker}}
|
||||||
|
</td>
|
||||||
|
<td ng-bind="client.return_msg"></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</section>
|
Loading…
Reference in new issue