|
|
@@ -117,9 +117,9 @@
|
|
|
}
|
|
|
.application-tab table tbody tr .btn{
|
|
|
border: none;
|
|
|
- width: 60px;
|
|
|
- height: 22px;
|
|
|
- line-height: 22px;
|
|
|
+ width: 90px;
|
|
|
+ height: 25px;
|
|
|
+ line-height: 25px;
|
|
|
color: #fff;
|
|
|
display: inline-block;
|
|
|
margin-bottom: 5px;
|
|
|
@@ -248,9 +248,9 @@
|
|
|
<div class="menu row">
|
|
|
<div class="col-sm-8">
|
|
|
<div class="btn-group" role="group" aria-label="...">
|
|
|
- <a type="button" class="btn btn-default" ng-class="{'btn-primary': storeType === 'tobeAudit'}" ng-click="setActive('tobeAudit')">未审核</a>
|
|
|
- <a type="button" class="btn btn-default" ng-class="{'btn-primary': storeType === 'pass'}" ng-click="setActive('pass')">已通过</a>
|
|
|
- <a type="button" class="btn btn-default" ng-class="{'btn-primary': storeType === 'fail'}" ng-click="setActive('fail')">未通过</a>
|
|
|
+ <a type="button" class="btn btn-default" ng-class="{'btn-primary': active === 'tobeAudit'}" ng-click="setActive('tobeAudit')">未审核</a>
|
|
|
+ <a type="button" class="btn btn-default" ng-class="{'btn-primary': active === 'pass'}" ng-click="setActive('pass')">已通过</a>
|
|
|
+ <a type="button" class="btn btn-default" ng-class="{'btn-primary': active === 'fail'}" ng-click="setActive('fail')">未通过</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-sm-3">
|
|
|
@@ -267,31 +267,18 @@
|
|
|
</div>
|
|
|
<!--表格-->
|
|
|
<div class="application-tab">
|
|
|
- <table class="table table-bordered" ng-table="bankInfoTableParams">
|
|
|
+ <table class="table table-bordered table-hover" ng-table="bankInfoTableParams">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="140">序号</th>
|
|
|
- <th width="300">企业名称</th>
|
|
|
- <th width="300">开户银行</th>
|
|
|
+ <th width="80">序号</th>
|
|
|
+ <th width="350">企业名称</th>
|
|
|
+ <th width="350">开户银行</th>
|
|
|
<th width="210">银行账号</th>
|
|
|
<th width="150">上传文件</th>
|
|
|
- <th width="220">创建时间
|
|
|
- <!--<p ng-click="changeShorting()" style="margin: 0;">创建时间-->
|
|
|
- <!--<i class="fa fa-long-arrow-up" ng-if="isShow === 'ALL' || isShow == 'UP'"></i>-->
|
|
|
- <!--<i class="fa fa-long-arrow-down" ng-if="isShow === 'ALL' || isShow == 'DOWN'"></i>-->
|
|
|
- <!--</p>-->
|
|
|
- </th>
|
|
|
- <th width="100">状态
|
|
|
- <!--<select class="form-control status" ng-model="storeStatus" ng-change="filterStoreStatus(storeStatus)">-->
|
|
|
- <!--<option value="" selected>状态</option>-->
|
|
|
- <!--<option ng-value="'OPENED'">已开店</option>-->
|
|
|
- <!--<option ng-value="'COMPLAINT'">申诉中</option>-->
|
|
|
- <!--<option ng-value="'CLOSED'">违规关店</option>-->
|
|
|
- <!--</select>-->
|
|
|
- </th>
|
|
|
- <!--<th width="120">操作</th>-->
|
|
|
- <th ng-if="active=='fail'" width="120">说明描述</th>
|
|
|
- <th width="120" ng-if="active=='tobeAudit'">操作</th>
|
|
|
+ <th width="120">创建时间</th>
|
|
|
+ <th width="100">状态</th>
|
|
|
+ <th ng-if="active=='fail'" width="220">说明描述</th>
|
|
|
+ <th width="220" ng-if="active=='tobeAudit'">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -306,7 +293,7 @@
|
|
|
<td ng-if="active=='fail'" ng-bind="::info.remark"></td>
|
|
|
<td ng-if="active=='tobeAudit'" class="text-center" style="position: relative;">
|
|
|
<a class="btn btn-sm btn-primary" ng-click="auditPass(info)">审核通过</a>
|
|
|
- <a class="btn btn-sm btn-default" ng-click="auditFail(info)">审核未通过</a>
|
|
|
+ <a class="btn btn-info btn-sm" ng-click="auditFail(info)">审核未通过</a>
|
|
|
<div class="audit-fail" ng-if="$$auditBankInfo.openDiv">
|
|
|
<div class="title">审核不通过的原因</div>
|
|
|
<div class="content col-md-12">
|