to_detail.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. {extend name="layout/content"}
  2. {block name="content"}
  3. <style>
  4. .float-e-margins .btn{margin-bottom:0 !important;}
  5. .upload-btn {
  6. position: relative;
  7. display: inline-block;
  8. cursor: pointer;
  9. background: #1ab394;
  10. padding: 6px 12px;
  11. color: #fff;
  12. text-align: center;
  13. border-radius: 3px;
  14. overflow: hidden;
  15. font-size: 14px;
  16. font-weight: 400;
  17. }
  18. .imgs li {
  19. list-style: none;
  20. float: left;
  21. border: 1px solid #d8d1d1;
  22. text-align: center;
  23. height: 30px;
  24. }
  25. .spacing {
  26. margin-bottom: 10px;
  27. padding-right: 4px;
  28. padding-left: 4px;
  29. height: 30px;
  30. }
  31. table td{
  32. text-align: center;
  33. }
  34. .key{
  35. width: 150px;
  36. text-align: right;
  37. background-color: #f0f9eb;
  38. }
  39. .value1{
  40. width: 240px;
  41. text-align: left;
  42. }
  43. .word-wrap{
  44. width:100%;
  45. white-space:normal;
  46. word-wrap:break-word;
  47. word-break:break-all;
  48. }
  49. span.new{font-weight:bold;color:#333;}
  50. span.old{text-decoration:line-through;}
  51. ul.files{list-style:none;display:flex;justify-content:center;padding:0;align-items:flex-start;}
  52. ul.files li{overflow:hidden;position:relative;margin-right:10px;float:left;}
  53. ul.files i.old{text-align:center;height:0;width:0;line-height:15px;color:#fff;position:absolute;right:0;bottom:0;border-top:15px solid transparent;border-right:15px solid #000;border-bottom:15px solid #000;border-left:15px solid transparent;display:block;}
  54. ul.files i.new{text-align:center;height:0;width:0;line-height:15px;color:#000;position:absolute;right:0;bottom:0;border-top:15px solid transparent;border-right:15px solid #0bfd1a;border-bottom:15px solid #0bfd1a;border-left:15px solid transparent;display:block;}
  55. </style>
  56. <div class="ibox float-e-margins">
  57. <div class="ibox-content">
  58. <div class="panel-body">
  59. <div class="panel panel-default">
  60. <input type="hidden" id="id" name="id" value="{$ecr.id}"/>
  61. <input type="hidden" id="type" name="type" value="{$ecr.type}"/>
  62. <input type="hidden" id="checkState" name="checkState" value="{$ecr.checkState}"/>
  63. <div class="panel-heading">学校信息</div>
  64. <div class="panel-body">
  65. <table style="width:100%" class="table table-bordered">
  66. <tr>
  67. <td class="key">
  68. 学校名称
  69. </td>
  70. <td class="value1 word-wrap" data-old='{$ecr.oldName}' data-new='{$ecr.newName}'></td>
  71. <td class="key">
  72. 统一社会信用代码
  73. </td>
  74. <td class="value1 word-wrap" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldIdCard}' data-new='{$ecr.newIdCard}'></td>
  75. <td rowspan="3" style="border: 1px solid #c0a16b;width: 300px">
  76. <label>
  77. 办学许可证、法人证书或登记证书
  78. </label>
  79. <ul class="files yyzz">
  80. {if condition="$ecr['oldImgurl'] eq $ecr['newImgurl']"}
  81. <li>
  82. {if condition="$ecr['oldImgurl_is_img'] eq 1"}
  83. <img onclick="Feng.showImg(this)" src="{$ecr.oldImgurl|getStoragePath}" style="max-height:60px;">
  84. {else/}
  85. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldImgurl|getStoragePath}', 'imgurl')" style="max-height:60px;">
  86. {/if}
  87. </li>
  88. {else/}
  89. {if condition="$ecr['oldImgurl']"}
  90. <li>
  91. {if condition="$ecr['oldImgurl_is_img'] eq 1"}
  92. <img onclick="Feng.showImg(this)" src="{$ecr.oldImgurl|getStoragePath}" style="max-height:60px;"><i class="old">旧</i>
  93. {else/}
  94. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldImgurl|getStoragePath}', 'imgurl')" style="max-height:60px;"><i class="old">旧</i>
  95. {/if}
  96. </li>
  97. {/if}
  98. {if condition="$ecr['newImgurl']"}
  99. <li>
  100. {if condition="$ecr['newImgurl_is_img'] eq 1"}
  101. <img src="{$ecr.newImgurl|getStoragePath}" onclick="Feng.showImg(this)" style="max-height:60px;"/><i class="new">新</i>
  102. {else/}
  103. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.newImgurl|getStoragePath}', 'imgurl')" style="max-height:60px;"><i class="new">新</i>
  104. {/if}
  105. </li>
  106. {/if}
  107. {/if}
  108. </ul>
  109. </td>
  110. </tr>
  111. <tr>
  112. <td class="key">
  113. 法人代表
  114. </td>
  115. <td class="value1 word-wrap" data-old='{$ecr.oldLegal}' data-new='{$ecr.newLegal}'>
  116. {$ep.legal}
  117. </td>
  118. <td class="key">
  119. 学校电话
  120. </td>
  121. <td class="value1 word-wrap" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldEphone}' data-new='{$ecr.newEphone}'></td>
  122. </tr>
  123. <tr>
  124. <td class="key">
  125. 学校地址
  126. </td>
  127. <td colspan="3" class="value1 word-wrap" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldFullLocationName} {$ecr.oldAddress}' data-new='{$ecr.newFullLocationName} {$ecr.newAddress}'></td>
  128. </tr>
  129. </table>
  130. </div>
  131. </div>
  132. </div>
  133. <div class="panel-body">
  134. <div class="panel panel-default">
  135. <div class="panel-heading">人才联络员信息</div>
  136. <div class="panel-body">
  137. <table style="width:100%" class="table table-bordered">
  138. <tr>
  139. <td class="key">
  140. 姓名
  141. </td>
  142. <td class="value1 word-wrap" data-old="{$ecr.oldAgentName}" data-new="{$ecr.newAgentName}"></td>
  143. <td class="key">
  144. 人才联络员电话
  145. </td>
  146. <td class="value1 word-wrap" data-old="{$ecr.oldAgentPhone}" data-new="{$ecr.newAgentPhone}"></td>
  147. </tr>
  148. <tr>
  149. <td class="key">
  150. 人才联络员邮箱
  151. </td>
  152. <td class="value1 word-wrap" data-old="{$ecr.oldAgentEmail}" data-new="{$ecr.newAgentEmail}"></td>
  153. <td class="key">
  154. 人才联络员信息备案表
  155. </td>
  156. <td style="text-align: left">
  157. <ul class="files beian">
  158. {if condition="$ecr['oldBeian'] eq $ecr['newBeian']"}
  159. <li>
  160. {if condition="$ecr['oldBeian_is_img'] eq 1"}
  161. <img onclick="Feng.showImg(this)" src="{$ecr.oldBeian|getStoragePath}" style="max-height:60px;">
  162. {else/}
  163. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldBeian|getStoragePath}', 'beian')" style="max-height:60px;">
  164. {/if}
  165. </li>
  166. {else/}
  167. {if condition="$ecr['oldBeian']"}
  168. <li>
  169. {if condition="$ecr['oldBeian_is_img'] eq 1"}
  170. <img onclick="Feng.showImg(this)" src="{$ecr.oldBeian|getStoragePath}" style="max-height:60px;"><i class="old">旧</i>
  171. {else/}
  172. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldBeian|getStoragePath}', 'beian')" style="max-height:60px;"><i class="old">旧</i>
  173. {/if}
  174. </li>
  175. {/if}
  176. {if condition="$ecr['newBeian']"}
  177. <li>
  178. {if condition="$ecr['newBeian_is_img'] eq 1"}
  179. <img src="{$ecr.newBeian|getStoragePath}" onclick="Feng.showImg(this)" style="max-height:60px;"/><i class="new">新</i>
  180. {else/}
  181. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.newBeian|getStoragePath}', 'beian')" style="max-height:60px;"><i class="new">新</i>
  182. {/if}
  183. </li>
  184. {/if}
  185. {/if}
  186. </ul>
  187. </td>
  188. </tr>
  189. </table>
  190. </div>
  191. </div>
  192. </div>
  193. </div>
  194. </div>
  195. <iframe style="display: none;" id="hiddenIframe" name="hiddenIframe"></iframe>
  196. <script type="text/javascript">
  197. document.write('<script src="/static/modular/enterprise/enterprisechangeRecord/ep_change_record_detail.js?v=' + (new Date()).getTime() + '"><\/script>');
  198. </script>
  199. {/block}