|
|
|
@ -4,6 +4,13 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
|
|
|
|
<div class="panel-heading">Audit Files
|
|
|
|
|
|
|
|
<button class="btn-group btn btn-warning" type="button"
|
|
|
|
|
|
|
|
ng-click="clientComplianceViewCommit()" ng-if="file.file_company.staus != 0">Commit to Compliance
|
|
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<p class="btn-group btn btn-warning" ng-if="file.file_company.staus == 0">正在审核中
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="form-horizontal">
|
|
|
|
<div class="form-horizontal">
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
@ -11,15 +18,33 @@
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
ngf-select="uploadBankFile($file)" ng-hide="currentUser.approve_result == 1">
|
|
|
|
ngf-select="uploadBankFile($file)"
|
|
|
|
|
|
|
|
ng-if="file.file_company.staus != 0">
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<a ng-if="file.client_bank_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_bank_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<a ng-if="file.client_bank_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_bank_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<uib-progressbar value="bankFileProgress.value" ng-if="bankFileProgress"></uib-progressbar>
|
|
|
|
<uib-progressbar value="bankFileProgress.value" ng-if="bankFileProgress"></uib-progressbar>
|
|
|
|
<a ng-if="bankIsImage" target="_blank" ng-href="{{file.client_bank_file}}">
|
|
|
|
<!-- <a ng-if="bankIsImage" target="_blank" ng-repeat="src in file.client_bank_file" ng-href="{{src}}">
|
|
|
|
<img ng-src="{{file.client_bank_file}}" class="col-sm-8"></a>
|
|
|
|
<img ng-src="{{src}}" class="col-sm-8">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</a>-->
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<tr ng-repeat="file_src in file.client_bank_file track by $index">
|
|
|
|
|
|
|
|
<td ng-bind="$index+1">1</td>
|
|
|
|
|
|
|
|
<td><a ng-if="bankIsImage" target="_blank" ng-href="{{file_src.file_value}}">
|
|
|
|
|
|
|
|
<img ng-src="{{file_src.file_value}}" class="col-sm-8">
|
|
|
|
|
|
|
|
</a></td>
|
|
|
|
|
|
|
|
<td >
|
|
|
|
|
|
|
|
<button class="btn-group btn btn-warning" type="button" ng-click="deleteComplianceFiles(file_src.file_id)" ng-if="file.file_company.staus != 0">X</button>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
@ -35,15 +60,27 @@
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
ngf-select="uploadCompanyFile($file)" ng-hide="currentUser.approve_result == 1">
|
|
|
|
ngf-select="uploadCompanyFile($file)"
|
|
|
|
|
|
|
|
ng-if="file.file_company.staus != 0">
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<a ng-if="file.client_company_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_company_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<a ng-if="file.client_company_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_company_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<uib-progressbar value="companyFileProgress.value" ng-if="companyFileProgress"></uib-progressbar>
|
|
|
|
<uib-progressbar value="companyFileProgress.value" ng-if="companyFileProgress"></uib-progressbar>
|
|
|
|
<a ng-if="companyIsImage" ng-href="{{file.client_company_file}}" target="_blank">
|
|
|
|
<!-- <a ng-if="companyIsImage" ng-repeat="src in file.client_company_file" ng-href="{{src}}" target="_blank">
|
|
|
|
<img ng-src="{{file.client_company_file}}" class="col-sm-8"></a>
|
|
|
|
<img ng-src="{{src}}" class="col-sm-8"></a>-->
|
|
|
|
|
|
|
|
<table><tbody>
|
|
|
|
|
|
|
|
<tr ng-repeat="file_src in file.client_company_file track by $index">
|
|
|
|
|
|
|
|
<td ng-bind="$index+1">1</td>
|
|
|
|
|
|
|
|
<td><a ng-if="bankIsImage" target="_blank" ng-href="{{file_src.file_value}}">
|
|
|
|
|
|
|
|
<img ng-src="{{file_src.file_value}}" class="col-sm-8">
|
|
|
|
|
|
|
|
</a></td>
|
|
|
|
|
|
|
|
<td >
|
|
|
|
|
|
|
|
<button class="btn-group btn btn-warning" type="button" ng-click="deleteComplianceFiles(file_src.file_id)" ng-if="file.file_company.staus != 0">X</button>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody></table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
@ -67,15 +104,28 @@
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
ngf-select="uploadIDFile($file)" ng-hide="currentUser.approve_result == 1">
|
|
|
|
ngf-select="uploadIDFile($file)"
|
|
|
|
|
|
|
|
ng-if="file.file_company.staus != 0">
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<a ng-if="file.client_id_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_id_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<a ng-if="file.client_id_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_id_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<uib-progressbar value="idFileProgress.value" ng-if="idFileProgress"></uib-progressbar>
|
|
|
|
<uib-progressbar value="idFileProgress.value" ng-if="idFileProgress"></uib-progressbar>
|
|
|
|
<a ng-if="idIsImage" ng-href="{{file.client_id_file}}" target="_blank">
|
|
|
|
<!--<a ng-if="idIsImage" ng-repeat="src in file.client_id_file" ng-href="{{src}}" target="_blank">
|
|
|
|
<img ng-src="{{file.client_id_file}}" class="col-sm-8"></a>
|
|
|
|
<img ng-src="{{src}}" class="col-sm-8"></a>-->
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<tr ng-repeat="file_src in file.client_id_file track by $index">
|
|
|
|
|
|
|
|
<td ng-bind="$index+1">1</td>
|
|
|
|
|
|
|
|
<td><a ng-if="bankIsImage" target="_blank" ng-href="{{file_src.file_value}}">
|
|
|
|
|
|
|
|
<img ng-src="{{file_src.file_value}}" class="col-sm-8">
|
|
|
|
|
|
|
|
</a></td>
|
|
|
|
|
|
|
|
<td >
|
|
|
|
|
|
|
|
<button class="btn-group btn btn-warning" type="button" ng-click="deleteComplianceFiles(file_src.file_id)" ng-if="file.file_company.staus != 0">X</button>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody></table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
@ -94,21 +144,34 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <div class="form-horizontal">
|
|
|
|
<div class="form-horizontal">
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="control-label col-sm-2">* Agreement</label>
|
|
|
|
<label class="control-label col-sm-2">* Agreement</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
ngf-select="uploadAgreementFile($file)" ng-hide="currentUser.approve_result == 1">
|
|
|
|
ngf-select="uploadAgreementFile($file)"
|
|
|
|
|
|
|
|
ng-if="file.file_company.staus != 0">
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
<a ng-if="file.client_agree_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_agree_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<a ng-if="file.client_agree_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_agree_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<uib-progressbar value="agreementFileProgress.value" ng-if="agreementFileProgress"></uib-progressbar>
|
|
|
|
<uib-progressbar value="agreementFileProgress.value" ng-if="agreementFileProgress"></uib-progressbar>
|
|
|
|
<a ng-if="agreeIsImage" target="_blank" ng-href="{{file.client_agree_file}}">
|
|
|
|
<!-- <a ng-if="agreeIsImage" target="_blank" ng-repeat="src in file.client_agree_file" ng-href="{{src}}">
|
|
|
|
<img ng-src="{{file.client_agree_file}}" class="col-sm-8"></a>
|
|
|
|
<img ng-src="{{src}}" class="col-sm-8"></a>-->
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<tr ng-repeat="file_src in file.client_agree_file track by $index">
|
|
|
|
|
|
|
|
<td ng-bind="$index+1">1</td>
|
|
|
|
|
|
|
|
<td><a ng-if="bankIsImage" target="_blank" ng-href="{{file_src.file_value}}">
|
|
|
|
|
|
|
|
<img ng-src="{{file_src.file_value}}" class="col-sm-8">
|
|
|
|
|
|
|
|
</a></td>
|
|
|
|
|
|
|
|
<td >
|
|
|
|
|
|
|
|
<button class="btn-group btn btn-warning" type="button" ng-click="deleteComplianceFiles(file_src.file_id)" ng-if="file.file_company.staus != 0">X</button>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody></table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="form-control-static">
|
|
|
|
<div class="form-control-static">
|
|
|
|
@ -120,35 +183,10 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-horizontal">
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
|
|
|
<label class="control-label col-sm-2">Application Form(optional)</label>
|
|
|
|
|
|
|
|
<div class="col-sm-4">
|
|
|
|
|
|
|
|
<div class="form-control-static" ng-if="currentUser." ng-hide="currentUser.approve_result == 1">
|
|
|
|
|
|
|
|
<button class="btn btn-primary" type="button"
|
|
|
|
|
|
|
|
ngf-select="uploadApplyFile($file)">
|
|
|
|
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<a ng-if="file.client_apply_file" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_apply_file}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
|
|
|
|
<i class="fa fa-check-square-o check-i" style="float: none" aria-hidden="true"ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<uib-progressbar value="bankFileProgress.value" ng-if="applyFileProgress"></uib-progressbar>
|
|
|
|
|
|
|
|
<a ng-if="applyIsImage" target="_blank" ng-href="{{file.client_apply_file}}">
|
|
|
|
|
|
|
|
<img ng-src="{{file.client_apply_file}}" class="col-sm-8"></a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
|
|
|
<div class="form-control-static">
|
|
|
|
|
|
|
|
<p>Example:请保证图片信息清晰可见,如下图</p>
|
|
|
|
|
|
|
|
<img class="col-sm-6" style="border: 1px solid #ddd"
|
|
|
|
|
|
|
|
src="https://file.royalpay.com.au/open/2017/06/15/1497454548133_uSn0TP2uQNLEfnMB57CMrxG2jTOWHG.png">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>-->
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!--<div class="margin-bottom margin-top">-->
|
|
|
|
<!--<div class="margin-bottom margin-top">-->
|
|
|
|
<!--<button class="btn-group btn btn-success" type="button" ng-click="updateFile()">Save-->
|
|
|
|
<!--<button class="btn-group btn btn-success" type="button" ng-click="updateFile()">Save-->
|
|
|
|
<!--</button>-->
|
|
|
|
<!--</button>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
|