talentInfo_base_check.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. {extend name="layout/content"}
  2. {block name="content"}
  3. <style type="text/css">
  4. .panel-heading{
  5. color:#333;
  6. background-color:#f5f5f5;
  7. border-color:#ddd
  8. }
  9. .spacing {
  10. margin-bottom: 10px;
  11. padding-right:4px;
  12. padding-left: 4px;
  13. }
  14. #talentInfoForm label {
  15. font-size: xx-small;
  16. }
  17. .has-feedback .form-control {
  18. padding-right: 5px;
  19. }
  20. .control-label{
  21. color: #337ab7;
  22. }
  23. .rowGroup{
  24. padding-bottom: 5px;
  25. }
  26. .imgs>li{
  27. list-style: none;
  28. float: left;
  29. border: 1px solid #d8d1d1;
  30. text-align: center;
  31. height: 35px;
  32. width:100%;
  33. padding:5px 0;
  34. }
  35. .imgs li>div{float:left;}
  36. .info td{background:#f5f5f5 !important;}
  37. .table .td-label{
  38. display: block;
  39. text-align: left;
  40. border-bottom: 1px solid #ccc;
  41. margin-bottom: 10px;
  42. }
  43. .word-wrap{
  44. width:100%;
  45. white-space:normal;
  46. word-wrap:break-word;
  47. word-break:break-all;
  48. }
  49. </style>
  50. <div class="ibox float-e-margins">
  51. <div class="ibox-content">
  52. <div class="form-horizontal">
  53. <div class="row">
  54. <div class="col-sm-12" >
  55. <div class="tabs-container" >
  56. <ul class="nav nav-tabs">
  57. <li class="" style="float: right;margin-left: 10px;">
  58. <button type="button" class="btn btn-sm btn-primary " onclick="TalentInfoInfoDlg.download()" >
  59. <i class="fa fa-download"></i>&nbsp;打包下载
  60. </button>
  61. </li>
  62. </ul>
  63. </div>
  64. <div class="tab-content">
  65. <div id="tab-1" class="tab-pane active">
  66. <div class="panel-body">
  67. <div class="panel panel-default">
  68. <div class="panel-heading" onclick="$(this).next().toggle()">个人信息</div>
  69. <div class="panel-body">
  70. <input type="hidden" name="id" id="id" value="{$info.id}">
  71. <input type="hidden" name="type" id="type" value="1">
  72. <input type="hidden" name="checkState" id="checkState" value="{$info.checkState}">
  73. <input type="hidden" name="enterprise_tag" id="enterprise_tag" value="{$info.enterpriseTag}">
  74. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  75. <tr>
  76. <td>
  77. <div class="rowGroup">
  78. <label class="control-label spacing td-label"><span style="color: red">*</span>姓名</label>
  79. <input type="text" class="form-control" id="name" name="name" value="{$info.name}" />
  80. </div>
  81. </td>
  82. <td>
  83. <div class="rowGroup">
  84. <label class="control-label spacing td-label"><span style="color: red">*</span>民族</label>
  85. <input class="form-control" id="nation" name="nation" value="{$info.nationName}"/>
  86. </div>
  87. </td>
  88. <td rowspan="5" style="width: 200%">
  89. <img id="photoImg" onclick="Feng.showImg(this)" src="{$info.headimgurl}" style="height:147px;width:105px;margin:0 auto;display:block;">
  90. <hr />
  91. <table class="fileTable"></table>
  92. </td>
  93. </tr>
  94. <tr>
  95. <td>
  96. <div class="rowGroup">
  97. <label class=" control-label spacing td-label"><span style="color: red">*</span>证件类型</label>
  98. {eq name="info.card_type" value="1"}<input class="form-control" id="card_type" name="cardType" value="身份证"/>{/eq}
  99. {eq name="info.card_type" value="2"}<input class="form-control" id="card_type" name="cardType" value="通行证"/>{/eq}
  100. {eq name="info.card_type" value="3}<input class="form-control" id="card_type" name="cardType" value="护照"/>{/eq}
  101. </div>
  102. </td>
  103. <td>
  104. <div class="rowGroup">
  105. <label class=" control-label spacing td-label"><span style="color: red">*</span>证件号码</label>
  106. <input class="form-control" id="card_number" name="card_number" value="{$info.card_number}">
  107. </div>
  108. </td>
  109. </tr>
  110. <tr>
  111. <td>
  112. <div class="rowGroup">
  113. <label class=" control-label spacing td-label"><span style="color: red">*</span>性别</label>
  114. <input type="text" class="form-control" id="sex" name="sex" value="{eq name='info.sex' value='1'}男{else/}女{/eq}" />
  115. </div>
  116. </td>
  117. <td>
  118. <div class="rowGroup">
  119. <label class=" control-label spacing td-label"><span style="color: red">*</span>出生日期</label>
  120. <input type="text" class="form-control" id="birthday" name="birthday" value="{$info.birthday}"/>
  121. </div>
  122. </td>
  123. </tr>
  124. <tr>
  125. <td>
  126. <div class="rowGroup">
  127. <label class=" control-label spacing td-label"><span style="color: red">*</span>政治面貌</label>
  128. <input class="form-control" id="politics" name="politics" value="{$info.politicsName}"/>
  129. </div>
  130. </td>
  131. <td>
  132. <div class="rowGroup">
  133. <label class=" control-label spacing td-label"><span style="color: red">*</span>国籍/地区</label>
  134. <input class="form-control" id="nationality" name="nationality" value="{$info.nationalityName}">
  135. </div>
  136. </td>
  137. </tr>
  138. <tr>
  139. <td colspan="2">
  140. <div class="rowGroup">
  141. <label class="control-label spacing td-label"><span style="color: red">*</span>籍贯</label>
  142. <input class="form-control" id="province" name="province" value="{$info.provinceName}{$info.cityName}{$info.countyName}"/>
  143. </div>
  144. </td>
  145. </tr>
  146. </table>
  147. </div>
  148. </div>
  149. <div class="panel panel-default">
  150. <div class="panel-heading" onclick="$(this).next().toggle()">基础信息</div>
  151. <div class="panel-body">
  152. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  153. <tr>
  154. <td>
  155. <div class="rowGroup">
  156. <label class="control-label spacing td-label"><span style="color: red">*</span>单位标签</label>
  157. <input type="text" class="form-control" id="enterprise_tag" name="enterprise_tag" value="{$info.enterpriseTagName}" />
  158. </div>
  159. </td>
  160. <td>
  161. <div class="rowGroup">
  162. <label class=" control-label spacing td-label"><span style="color: red">*</span>单位名称</label>
  163. <input type="text" class="form-control" id="enterprise_name" name="enterprise_name" value="{$info.enterpriseName}" />
  164. </div>
  165. </td>
  166. <td rowspan="5" style="width: 200%">
  167. <table class="fileTable"></table>
  168. </td>
  169. </tr>
  170. <tr>
  171. <td>
  172. <div class="rowGroup">
  173. <label class=" control-label spacing td-label"><span style="color: red">*</span>所属街道</label>
  174. <input type="text" class="form-control" id="street" name="street" value="{$info.streetName}" />
  175. </div>
  176. </td>
  177. <td>
  178. <div class="rowGroup">
  179. <label class=" control-label spacing td-label"><span style="color: red">*</span>产业领域</label>
  180. <input type="text" class="form-control" id="industry_field" name="industry_field" value="{$info.industryFieldName}">
  181. </div>
  182. </td>
  183. </tr>
  184. <tr>
  185. <td>
  186. <div class="rowGroup">
  187. <label class=" control-label spacing td-label"><span style="color: red">*</span>人才类型</label>
  188. <input type="text" class="form-control" id="talent_type" name="talent_type" value="{$info.talentTypeName}" data-value="{$info.talent_type}"/>
  189. </div>
  190. </td>
  191. <td>
  192. </td>
  193. </tr>
  194. {if condition="in_array($info['talent_type'],[1,2])"}
  195. <tr>
  196. <td>
  197. <div class="rowGroup ">
  198. <label class=" control-label spacing td-label"><span style="color: red">*</span>在我市缴交社会保险或个人所得税月份</label>
  199. <input type="text" class="form-control" id="tax_insurance_month" name="tax_insurance_month" value="{$info.tax_insurance_month}" />
  200. </div>
  201. </td>
  202. <td>
  203. <div class="rowGroup">
  204. <label class=" control-label spacing td-label"><span style="color: red">*</span>劳动合同起止时间</label>
  205. <input type="text" class="form-control" id="labor_contract_rangetime" name="labor_contract_rangetime" value="{$info.labor_contract_rangetime}" />
  206. </div>
  207. </td>
  208. </tr>
  209. {else/}
  210. <tr>
  211. <td >
  212. <div class="rowGroup">
  213. 预引进类型
  214. </div>
  215. </td>
  216. <td >
  217. <div class="rowGroup">
  218. {if condition="$info['pre_import_type']==1"}意向合同{else/}创业企业名称预核准{/if}
  219. </div>
  220. </td>
  221. </tr>
  222. {/if}
  223. {if condition="in_array($info['enterpriseTag'],['mtdw','gyqyh','mbfqy','jrjg'])"}
  224. <tr>
  225. <td>
  226. <label class=" control-label spacing td-label">说明</label>
  227. <div class="word-wrap" id="typeTips">
  228. {switch name="info.talent_type"}
  229. {case value="1"}含经晋江市认定且还在晋江市就业创业的人才,或在晋江市就业创业但未曾申报过晋江市现代产业体系人才的人才。{/case}
  230. {case value="2"}含本办法出台后首次从晋江市以外引进认定的人才,或者流出晋江市满3年后又返回晋江市就业创业(不含企业集团内部人员调动)的人才。{/case}
  231. {case value="3"}含已经与晋江市用人单位达成就业意向且签订预引进意向合作协议(合同)的人才,或拟来我市创业且提交企业名称预先核准的人才。{/case}
  232. {/switch}
  233. </div>
  234. </td>
  235. <td>
  236. <div class="rowGroup">
  237. <label class="control-label spacing td-label"><span style="color: red">*</span>{if condition="$info['talent_type'] eq 1"}近三年{else/}首次{/if}来晋工作时间</label>
  238. <input type="text" class="form-control date" id="fst_work_time" value="{$info.fst_work_time}"/>
  239. </div>
  240. </td>
  241. </tr>
  242. {else/}
  243. <tr>
  244. <td colspan="2">
  245. <label class=" control-label spacing td-label">说明</label>
  246. <div class="word-wrap" id="typeTips">
  247. {switch name="info.talent_type"}
  248. {case value="1"}含经晋江市认定且还在晋江市就业创业的人才,或在晋江市就业创业但未曾申报过晋江市现代产业体系人才的人才。{/case}
  249. {case value="2"}含本办法出台后首次从晋江市以外引进认定的人才,或者流出晋江市满3年后又返回晋江市就业创业(不含企业集团内部人员调动)的人才。{/case}
  250. {case value="3"}含已经与晋江市用人单位达成就业意向且签订预引进意向合作协议(合同)的人才,或拟来我市创业且提交企业名称预先核准的人才。{/case}
  251. {/switch}
  252. </div>
  253. </td>
  254. </tr>
  255. {/if}
  256. </table>
  257. </div>
  258. <div class="panel-body">
  259. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  260. <tr>
  261. <td>
  262. <div class="rowGroup">
  263. <label class="control-label spacing td-label"><span style="color: red">*</span>工作简历</label>
  264. <textarea class="form-control" style="border: none" placeholder="填写工作简历">{$info.experience}</textarea>
  265. </div>
  266. </td>
  267. <td>
  268. <div class="rowGroup">
  269. <label class=" control-label spacing td-label"><span style="color: red">*</span>教育背景</label>
  270. <textarea class="form-control" style="border: none" placeholder="填写教育背景">{$info.education}</textarea>
  271. </div>
  272. </td>
  273. </tr>
  274. </table>
  275. </div>
  276. </div>
  277. <div class="panel panel-default">
  278. <div class="panel-heading" onclick="$(this).next().toggle()">日志</div>
  279. <table id="logTable">
  280. </table>
  281. </div>
  282. </div>
  283. </div>
  284. <div id="tab-2" class="tab-pane ">
  285. <label style="padding-top: 15px;color: red">*请根据上传的附件材料,编辑好相应的文件夹名称</label>
  286. </div>
  287. </div>
  288. </div>
  289. </div>
  290. </div>
  291. </div>
  292. </div>
  293. <script type="text/javascript">
  294. document.write('<script src="/static/modular/talentIdentify/talentInfo/talentInfo_common_check.js?v=' + (new Date()).getTime() + '"><\/script>');
  295. </script>
  296. {/block}