Showing
1 changed file
with
5 additions
and
1 deletions
@@ -65,7 +65,7 @@ | @@ -65,7 +65,7 @@ | ||
65 | <th>法人身份证反面照片</th> | 65 | <th>法人身份证反面照片</th> |
66 | <td><img id="certReverseImage" height='132px;' width='211px;' /></td> | 66 | <td><img id="certReverseImage" height='132px;' width='211px;' /></td> |
67 | </tr> | 67 | </tr> |
68 | - <tr> | 68 | + <tr id="rejectReasonTr"> |
69 | <th rowspan="2">不通过原因</th> | 69 | <th rowspan="2">不通过原因</th> |
70 | <td id="rejectReason" rowspan="2"></td> | 70 | <td id="rejectReason" rowspan="2"></td> |
71 | </tr> | 71 | </tr> |
@@ -120,11 +120,15 @@ function getDetailInfo(id){ | @@ -120,11 +120,15 @@ function getDetailInfo(id){ | ||
120 | success: function (result) { | 120 | success: function (result) { |
121 | if(result.code == 200) { | 121 | if(result.code == 200) { |
122 | var businessType = result.data.businessType; | 122 | var businessType = result.data.businessType; |
123 | + var auditStatus = result.data.auditStatus; | ||
123 | if(businessType == 2){ | 124 | if(businessType == 2){ |
124 | $("#businessNameTitle").html("企业名称"); | 125 | $("#businessNameTitle").html("企业名称"); |
125 | $("#certNameTitle").html("法人姓名"); | 126 | $("#certNameTitle").html("法人姓名"); |
126 | $("#certNoTitle").html("法人身份证号"); | 127 | $("#certNoTitle").html("法人身份证号"); |
127 | } | 128 | } |
129 | + if(auditStatus ==2){ | ||
130 | + document.getElementById("rejectReasonTr").style.display= "inline"; | ||
131 | + } | ||
128 | $("#businessTypeStr").html(result.data.businessTypeStr); | 132 | $("#businessTypeStr").html(result.data.businessTypeStr); |
129 | $("#businessName").html(result.data.businessName); | 133 | $("#businessName").html(result.data.businessName); |
130 | $("#socialCreditCode").html(result.data.socialCreditCode); | 134 | $("#socialCreditCode").html(result.data.socialCreditCode); |
-
Please register or login to post a comment