|
|
|
@ -23,8 +23,6 @@
|
|
|
|
|
ng-if="file.client_bank_file.file_write && file.file_company.status != 0 && file.file_company.status!=1">
|
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
|
</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>
|
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<uib-progressbar value="bankFileProgress.value" ng-if="bankFileProgress"></uib-progressbar>
|
|
|
|
|
<!-- <a ng-if="bankIsImage" target="_blank" ng-repeat="src in file.client_bank_file" ng-href="{{src}}">
|
|
|
|
@ -64,8 +62,6 @@
|
|
|
|
|
ng-if="file.client_company_file.file_write && file.file_company.status != 0 && file.file_company.status!=1">
|
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
|
</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>
|
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<uib-progressbar value="companyFileProgress.value" ng-if="companyFileProgress"></uib-progressbar>
|
|
|
|
|
<!-- <a ng-if="companyIsImage" ng-repeat="src in file.client_company_file" ng-href="{{src}}" target="_blank">
|
|
|
|
@ -107,8 +103,6 @@
|
|
|
|
|
ng-if="file.client_id_file.file_write && file.file_company.status != 0 && file.file_company.status!=1">
|
|
|
|
|
<i class="fa fa-upload"></i> Upload
|
|
|
|
|
</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>
|
|
|
|
|
<i class="fa fa-check-square-o check-i" aria-hidden="true" style="float: none" ng-if="$root.complianceCheck.authFile"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<uib-progressbar value="idFileProgress.value" ng-if="idFileProgress"></uib-progressbar>
|
|
|
|
|
<!--<a ng-if="idIsImage" ng-repeat="src in file.client_id_file" ng-href="{{src}}" target="_blank">
|
|
|
|
@ -147,7 +141,20 @@
|
|
|
|
|
<label class="control-label col-sm-2">* Agreement</label>
|
|
|
|
|
<div class="col-sm-4">
|
|
|
|
|
<div class="form-control-static">
|
|
|
|
|
<button class="btn btn-success" ng-click="signContract()"type="button" >签订合同</button>
|
|
|
|
|
<a role="button" class="btn btn-success" ng-if="file.client_agree_file.file_value && file.file_company.status != 0 && file.file_company.status!=1" ui-sref="compliance_contract" >重新签订合同</a>
|
|
|
|
|
<a role="button" class="btn btn-success" ng-if="!file.client_agree_file.file_value && file.file_company.status != 0 && file.file_company.status!=1" ui-sref="compliance_contract" >签订合同</a>
|
|
|
|
|
<a ng-if="file.client_agree_file.file_value" role="button" class="btn-group btn btn-warning" type="button" ng-href="{{file.client_agree_file.file_value[0].file_value}}" target="_blank"><i class="fa fa-download"></i></a>
|
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr ng-repeat="file_src in file.client_agree_file.file_value track by $index">
|
|
|
|
|
<td ng-bind="$index+1+'.'" class="btn">1</td>
|
|
|
|
|
<td><a ng-if="agreeIsImage" target="_blank" ng-href="{{file_src.file_value}}">
|
|
|
|
|
<img ng-src="{{file_src.file_value}}" class="col-sm-8" onerror="this.src='https://static.easyicon.net/preview/118/1184255.gif'">
|
|
|
|
|
</a>
|
|
|
|
|
<button class="btn btn-danger" type="button" ng-click="deleteComplianceFiles(file_src.file_id)" ng-if="file.client_id_file.file_write && file_src.status !=1 && file.file_company.status != 0 && file.file_company.status!=1 ">X</button>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody></table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|