master
liuxinxin 5 years ago
parent 6513f627f8
commit 9c46e24f90

@ -52,7 +52,7 @@
<select id="findKycClientFileByAudit" resultType="com.alibaba.fastjson.JSONObject">
select * from sys_files where is_valid = 1
and client_id = #{client_id}
and (status = 1 or status = 2) and file_name in ('client_bank_file','client_id_file','kyc_utility_bill_file')
and (status = 1 or status = 2 or status = 3) and file_name in ('client_bank_file','client_id_file','kyc_utility_bill_file')
order by last_update_date asc
</select>
<update id="confirmAgreeFile">

@ -327,6 +327,13 @@ margin-bottom: 10%;"/>
<i class="fa fa-envelope-o"></i> <span>自主申请|Partner Applies</span>
</a>
</li>-->
<li ui-sref-active="active" ng-if="roleNow=='bduser' && (currentUser.org_id==null || currentUser.org_id==1)">
<a ui-sref="partnerKYCProgress" ui-sref-opts="{reload:true}">
<i class="fa fa-area-chart"></i> <span>商户KYC认证进度</span>
</a>
</li>
</ul>
</li>

@ -69,7 +69,7 @@ define(['angular', 'static/commons/commons', 'uiBootstrap', 'uiRouter', 'ngBootS
$scope.statusSelected = function (arr) {
return $scope.params.status != null && $scope.params.status.filter(function (status) {
return arr.indexOf(status) >= 0
}).length > 0 || $scope.status != null && $scope.status.filter(function (status) {
}).length > 0 || $scope.params.progress_status != null && $scope.params.progress_status.filter(function (status) {
return arr.indexOf(status) >= 0
}).length > 0
};

@ -184,12 +184,12 @@
<label class="control-label col-xs-4 col-sm-2">审核状态:</label>
<div class="col-sm-10 col-xs-8">
<p class="form-control-static">
<a role="button" ng-class="{'bg-primary':status==null}"
ng-click="status=null;loadClientProgressing(1,status)">All</a> |
<a role="button" ng-class="{'bg-primary':params.progress_status==null}"
ng-click="params.progress_status=null;loadClientProgressing(1,params.progress_status)">All</a> |
<a role="button" ng-class="{'bg-primary':statusSelected([0])}"
ng-click="status=[0];loadClientProgressing(1,status)">待审核</a>|
ng-click="params.progress_status=[0];loadClientProgressing(1,params.progress_status)">待审核</a>|
<a role="button" ng-class="{'bg-primary':statusSelected([1])}"
ng-click="status=[1];loadClientProgressing(1,status)">通过</a>
ng-click="params.progress_status=[1];loadClientProgressing(1,params.progress_status)">通过</a>
</p>
</div>
</div>

Loading…
Cancel
Save