...
|
...
|
@@ -65,7 +65,7 @@ |
|
|
<th>法人身份证反面照片</th>
|
|
|
<td><img id="certReverseImage" height='132px;' width='211px;' /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<tr id="rejectReasonTr">
|
|
|
<th rowspan="2">不通过原因</th>
|
|
|
<td id="rejectReason" rowspan="2"></td>
|
|
|
</tr>
|
...
|
...
|
@@ -120,11 +120,15 @@ function getDetailInfo(id){ |
|
|
success: function (result) {
|
|
|
if(result.code == 200) {
|
|
|
var businessType = result.data.businessType;
|
|
|
var auditStatus = result.data.auditStatus;
|
|
|
if(businessType == 2){
|
|
|
$("#businessNameTitle").html("企业名称");
|
|
|
$("#certNameTitle").html("法人姓名");
|
|
|
$("#certNoTitle").html("法人身份证号");
|
|
|
}
|
|
|
if(auditStatus ==2){
|
|
|
document.getElementById("rejectReasonTr").style.display= "inline";
|
|
|
}
|
|
|
$("#businessTypeStr").html(result.data.businessTypeStr);
|
|
|
$("#businessName").html(result.data.businessName);
|
|
|
$("#socialCreditCode").html(result.data.socialCreditCode);
|
...
|
...
|
|