to_detail.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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="4" 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.oldMedicalCommunityName}' data-new='{$ecr.newMedicalCommunityName}'>
  122. </td>
  123. </tr>
  124. <tr>
  125. <td class="key">
  126. 是否总院
  127. </td>
  128. <td class="value1" data-old='{eq name="ecr.oldIsGeneral" value="1"}是{else/}否{/eq}' data-new='{eq name="ecr.newIsGeneral" value="1"}是{else/}否{/eq}'></td>
  129. <td class="key">
  130. 医院电话
  131. </td>
  132. <td class="value1 word-wrap" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldEphone}' data-new='{$ecr.newEphone}'></td>
  133. </tr>
  134. <tr>
  135. <td class="key">
  136. 医院地址
  137. </td>
  138. <td colspan="3" class="value1 word-wrap" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldProvinceName}{$ecr.oldCityName}{$ecr.oldCountyName} {$ecr.oldAddress}' data-new='{$ecr.newProvinceName}{$ecr.newCityName}{$ecr.newCountyName} {$ecr.newAddress}'></td>
  139. </tr>
  140. <tr>
  141. <td class="key">
  142. 银行账号
  143. </td>
  144. <td class="value1 word-wrap" data-old='{$ecr.oldBankCard}' data-new='{$ecr.newBankCard}'></td>
  145. <td class="key">
  146. 开户银行
  147. </td>
  148. <td class="value1 word-wrap`" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldBank}' data-new='{$ecr.newBank}'></td>
  149. <td style="border: 1px solid #c0a16b" rowspan="2">
  150. <label>
  151. 开户许可证/基本存款账户信息
  152. </label>
  153. <ul class="files khxkz">
  154. {if condition="$ecr['oldBankImg'] eq $ecr['newBankImg']"}
  155. <li>
  156. {if condition="$ecr['oldBankImg_is_img'] eq 1"}
  157. <img onclick="Feng.showImg(this)" src="{$ecr.oldBankImg|getStoragePath}" style="max-height:60px;">
  158. {else/}
  159. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldBankImg|getStoragePath}', 'bankImg')" style="max-height:60px;">
  160. {/if}
  161. </li>
  162. {else/}
  163. {if condition="$ecr['oldBankImg']"}
  164. <li>
  165. {if condition="$ecr['oldBankImg_is_img'] eq 1"}
  166. <img onclick="Feng.showImg(this)" src="{$ecr.oldBankImg|getStoragePath}" style="max-height:60px;"><i class="old">旧</i>
  167. {else/}
  168. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldBankImg|getStoragePath}', 'bankImg')" style="max-height:60px;"><i class="old">旧</i>
  169. {/if}
  170. </li>
  171. {/if}
  172. {if condition="$ecr['newBankImg']"}
  173. <li>
  174. {if condition="$ecr['newBankImg_is_img'] eq 1"}
  175. <img src="{$ecr.newBankImg|getStoragePath}" onclick="Feng.showImg(this)" style="max-height:60px;"/><i class="new">新</i>
  176. {else/}
  177. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.newBankImg|getStoragePath}', 'bankImg')" style="max-height:60px;"><i class="new">新</i>
  178. {/if}
  179. </li>
  180. {/if}
  181. {/if}
  182. </ul>
  183. </td>
  184. </tr>
  185. <tr>
  186. <td class="key">
  187. 开户银行网点
  188. </td>
  189. <td colspan="3" class="value1 word-wrap" style="border-right: 1px solid #c0a16b" data-old='{$ecr.oldBankNetwork}' data-new='{$ecr.newBankNetwork}'></td>
  190. </tr>
  191. </table>
  192. </div>
  193. </div>
  194. </div>
  195. <div class="panel-body">
  196. <div class="panel panel-default">
  197. <div class="panel-heading">人才联络员信息</div>
  198. <div class="panel-body">
  199. <table style="width:100%" class="table table-bordered">
  200. <tr>
  201. <td class="key">
  202. 姓名
  203. </td>
  204. <td class="value1 word-wrap" data-old="{$ecr.oldAgentName}" data-new="{$ecr.newAgentName}"></td>
  205. <td class="key">
  206. 人才联络员电话
  207. </td>
  208. <td class="value1 word-wrap" data-old="{$ecr.oldAgentPhone}" data-new="{$ecr.newAgentPhone}"></td>
  209. </tr>
  210. <tr>
  211. <td class="key">
  212. 人才联络员邮箱
  213. </td>
  214. <td class="value1 word-wrap" data-old="{$ecr.oldAgentEmail}" data-new="{$ecr.newAgentEmail}"></td>
  215. <td class="key">
  216. 人才联络员信息备案表
  217. </td>
  218. <td style="text-align: left">
  219. <ul class="files beian">
  220. {if condition="$ecr['oldBeian'] eq $ecr['newBeian']"}
  221. <li>
  222. {if condition="$ecr['oldBeian_is_img'] eq 1"}
  223. <img onclick="Feng.showImg(this)" src="{$ecr.oldBeian|getStoragePath}" style="max-height:60px;">
  224. {else/}
  225. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldBeian|getStoragePath}', 'beian')" style="max-height:60px;">
  226. {/if}
  227. </li>
  228. {else/}
  229. {if condition="$ecr['oldBeian']"}
  230. <li>
  231. {if condition="$ecr['oldBeian_is_img'] eq 1"}
  232. <img onclick="Feng.showImg(this)" src="{$ecr.oldBeian|getStoragePath}" style="max-height:60px;"><i class="old">旧</i>
  233. {else/}
  234. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.oldBeian|getStoragePath}', 'beian')" style="max-height:60px;"><i class="old">旧</i>
  235. {/if}
  236. </li>
  237. {/if}
  238. {if condition="$ecr['newBeian']"}
  239. <li>
  240. {if condition="$ecr['newBeian_is_img'] eq 1"}
  241. <img src="{$ecr.newBeian|getStoragePath}" onclick="Feng.showImg(this)" style="max-height:60px;"/><i class="new">新</i>
  242. {else/}
  243. <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$ecr.newBeian|getStoragePath}', 'beian')" style="max-height:60px;"><i class="new">新</i>
  244. {/if}
  245. </li>
  246. {/if}
  247. {/if}
  248. </ul>
  249. </td>
  250. </tr>
  251. </table>
  252. </div>
  253. </div>
  254. </div>
  255. </div>
  256. </div>
  257. <iframe style="display: none;" id="hiddenIframe" name="hiddenIframe"></iframe>
  258. <script type="text/javascript">
  259. document.write('<script src="/static/modular/enterprise/enterprisechangeRecord/ep_change_record_detail.js?v=' + (new Date()).getTime() + '"><\/script>');
  260. </script>
  261. {/block}