talentInfo_common_check.html 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  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. .table .td-label{
  36. display: block;
  37. text-align: left;
  38. border-bottom: 1px solid #ccc;
  39. margin-bottom: 10px;
  40. }
  41. .imgs li>div{float:left;}
  42. .info td{background:#f5f5f5 !important;}
  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. <li class="" style="float: right;">
  63. <button type="button" class="btn btn-sm btn-info " onclick="$('#fileTable').bootstrapTable('expandAllRows');" >
  64. <i class="fa fa-caret-square-o-down"></i>&nbsp;显示附件
  65. </button>
  66. </li>
  67. </ul>
  68. </div>
  69. <div class="tab-content">
  70. <div id="tab-1" class="tab-pane active">
  71. <div class="panel-body" >
  72. <div class="panel panel-default">
  73. <div class="panel-heading" onclick="$(this).next().toggle()">个人信息</div>
  74. <div class="panel-body">
  75. <input type="hidden" name="id" id="id" value="{$info.id}">
  76. <input type="hidden" name="type" id="type" value="1">
  77. <input type="hidden" name="checkState" id="checkState" value="{$info.checkState}">
  78. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  79. <tr>
  80. <td>
  81. <label class="control-label spacing td-label">姓名</label>
  82. <input type="text" class="form-control" id="name" name="name" value="{$info.name}" />
  83. </td>
  84. <td>
  85. <label class="control-label spacing td-label"><span style="color: red">*</span>民族</label>
  86. <input class="form-control" id="nation" name="nation" value="{$info.nationName}"/>
  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. 附件:
  92. <table class="fileTable"></table>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td>
  97. <label class=" control-label spacing td-label"><span style="color: red">*</span>证件类型</label>
  98. <select class="form-control" id="card_type" name="card_type" value="{$info.card_type}">
  99. {eq name="info.card_type" value="1"}<option value="1">身份证</option>{/eq}
  100. {eq name="info.card_type" value="2"}<option value="2">通行证</option>{/eq}
  101. {eq name="info.card_type" value="3"}<option value="3">护照</option>{/eq}
  102. </select>
  103. </td>
  104. <td>
  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. </td>
  108. </tr>
  109. <tr>
  110. <td>
  111. <label class=" control-label spacing td-label"><span style="color: red">*</span>性别</label>
  112. <input type="text" class="form-control" id="sex" name="sex" value="{eq name='info.sex' value='1'}男{else/}女{/eq}" />
  113. </td>
  114. <td>
  115. <label class=" control-label spacing td-label"><span style="color: red">*</span>出生日期</label>
  116. <input type="text" class="form-control" id="birthday" name="birthday" value="{$info.birthday}"/>
  117. </td>
  118. </tr>
  119. <tr>
  120. <td>
  121. <label class=" control-label spacing td-label"><span style="color: red">*</span>政治面貌</label>
  122. <input class="form-control" id="politics" name="politics" value="{$info.politicsName}"/>
  123. </td>
  124. <td>
  125. <label class=" control-label spacing td-label"><span style="color: red">*</span>国籍/地区</label>
  126. <input class="form-control" id="nationality" name="nationality" value="{$info.nationalityName}">
  127. </td>
  128. </tr>
  129. <tr>
  130. <td colspan="2">
  131. <label class=" control-label spacing td-label"><span style="color: red">*</span>籍贯</label>
  132. <input class="form-control" id="province" name="province" value="{$info.provinceName}{$info.cityName}{$info.countyName}"/>
  133. </td>
  134. </tr>
  135. </table>
  136. </div>
  137. </div>
  138. <div class="panel panel-default">
  139. <div class="panel-heading" onclick="$(this).next().toggle()">基础信息</div>
  140. <div class="panel-body">
  141. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  142. <tr>
  143. <td>
  144. <label class="control-label spacing td-label"><span style="color: red">*</span>单位标签</label>
  145. <input type="text" class="form-control" id="enterprise_tag" name="enterprise_tag" value="{$info.enterpriseTagName}" />
  146. </td>
  147. <td>
  148. <label class=" control-label spacing td-label"><span style="color: red">*</span>单位名称</label>
  149. <input type="text" class="form-control" id="enterprise_name" name="enterprise_name" value="{$info.enterpriseName}" />
  150. </td>
  151. <td rowspan="5" style="width: 200%">
  152. <table class="fileTable"></table>
  153. </td>
  154. </tr>
  155. <tr>
  156. <td>
  157. <label class=" control-label spacing td-label"><span style="color: red">*</span>所属街道</label>
  158. <input type="text" class="form-control" id="street" name="street" value="{$info.streetName}" />
  159. </td>
  160. <td>
  161. <label class=" control-label spacing td-label"><span style="color: red">*</span>产业领域</label>
  162. <input type="text" class="form-control" id="industry_field" name="industry_field" value="{$info.industryFieldName}">
  163. </td>
  164. </tr>
  165. <tr>
  166. <td>
  167. <label class=" control-label spacing td-label"><span style="color: red">*</span>人才类型</label>
  168. <select class="form-control" id="talent_type" name="talent_type" data-value="{$info.talent_type}">
  169. <option value="" selected="true">{$info.talentTypeName}</option>
  170. </select>
  171. </td>
  172. <td>
  173. </td>
  174. </tr>
  175. {if condition="in_array($info['talent_type'],[1,2])"}
  176. <tr>
  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="tax_insurance_month" name="tax_insurance_month" value="{$info.tax_insurance_month}" />
  181. </div>
  182. </td>
  183. <td>
  184. <div class="rowGroup">
  185. <label class=" control-label spacing td-label"><span style="color: red">*</span>劳动合同起止时间</label>
  186. <input type="text" class="form-control" id="labor_contract_rangetime" name="labor_contract_rangetime" value="{$info.labor_contract_rangetime}" />
  187. </div>
  188. </td>
  189. </tr>
  190. {else/}
  191. <tr>
  192. <td >
  193. <div class="rowGroup">
  194. 预引进类型
  195. </div>
  196. </td>
  197. <td >
  198. <div class="rowGroup">
  199. {if condition="$info['pre_import_type']==1"}意向合同{else/}创业企业名称预核准{/if}
  200. </div>
  201. </td>
  202. </tr>
  203. {/if}
  204. {if condition="in_array($info['enterpriseTag'],['mtdw','gyqyh','mbfqy','jrjg'])"}
  205. <tr>
  206. <td>
  207. <label class=" control-label spacing td-label">说明</label>
  208. <div style="width:100%;white-space:normal;word-wrap:break-word;word-break:break-all; ">
  209. {switch name="info.talent_type"}
  210. {case value="1"}含经晋江市认定且还在晋江市就业创业的人才,或在晋江市就业创业但未曾申报过晋江市现代产业体系人才的人才。{/case}
  211. {case value="2"}含本办法出台后首次从晋江市以外引进认定的人才,或者流出晋江市满3年后又返回晋江市就业创业(不含企业集团内部人员调动)的人才。{/case}
  212. {case value="3"}含已经与晋江市用人单位达成就业意向且签订预引进意向合作协议(合同)的人才,或拟来我市创业且提交企业名称预先核准的人才。{/case}
  213. {/switch}
  214. </div>
  215. </td>
  216. <td>
  217. <div class="rowGroup">
  218. <label class="control-label spacing td-label"><span style="color: red">*</span>{if condition="$info['talent_type'] eq 1"}近三年{else/}首次{/if}来晋工作时间</label>
  219. <input type="text" class="form-control date" id="fst_work_time" value="{$info.fst_work_time}"/>
  220. </div>
  221. </td>
  222. </tr>
  223. {else/}
  224. <tr>
  225. <td colspan="2">
  226. <label class=" control-label spacing td-label">说明</label>
  227. <div style="width:100%;white-space:normal;word-wrap:break-word;word-break:break-all; ">
  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. </tr>
  236. {/if}
  237. </table>
  238. </div>
  239. <div class="panel-body">
  240. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  241. <tr>
  242. <td>
  243. <div class="rowGroup">
  244. <label class="control-label spacing td-label"><span style="color: red">*</span>工作简历</label>
  245. <textarea class="form-control" style="border: none" placeholder="填写工作简历">{$info.experience}</textarea>
  246. </div>
  247. </td>
  248. <td>
  249. <div class="rowGroup">
  250. <label class=" control-label spacing td-label"><span style="color: red">*</span>教育背景</label>
  251. <textarea class="form-control" style="border: none" placeholder="填写教育背景">{$info.education}</textarea>
  252. </div>
  253. </td>
  254. </tr>
  255. </table>
  256. </div>
  257. </div>
  258. <div class="panel panel-default">
  259. <div class="panel-heading" onclick="$(this).next().toggle()">人才认定申请</div>
  260. <div class="panel-body">
  261. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  262. <tr>
  263. <td>
  264. <div class="rowGroup">
  265. <label class=" control-label spacing td-label"><span style="color: red">*</span>申报年度</label>
  266. <input type="text" class="form-control" name="apply_year" id="apply_year" value="{$info.apply_year}" readonly disabled>
  267. </div>
  268. </td>
  269. <td>
  270. <div class="rowGroup">
  271. <label class="control-label spacing td-label"><span style="color: red">*</span>手机号码</label>
  272. <input type="text" class="form-control" id="phone" value="{$info.phone}" maxlength="11"/>
  273. </div>
  274. </td>
  275. <td>
  276. <div class="rowGroup">
  277. <label class="control-label spacing td-label"><span style="color: red">*</span>电子邮箱</label>
  278. <input type="text" class="form-control" id="email" value="{$info.email}"/>
  279. </div>
  280. </td>
  281. <td rowspan="3" style="width: 300%">
  282. <table class="fileTable"></table>
  283. </td>
  284. </tr>
  285. <tr>
  286. <td>
  287. <div class="rowGroup">
  288. <label class="control-label spacing td-label"><span style="color: red">*</span>最高学历</label>
  289. <input type="text" class="form-control" id="highest_degree" name="highest_degree" value="{$info.highestDegreeName}">
  290. </div>
  291. </td>
  292. <td>
  293. <div class="rowGroup">
  294. <label class="control-label spacing td-label"><span style="color: red">*</span>毕业院校</label>
  295. <input type="text" class="form-control" id="graduate_school" value="{$info.graduate_school}">
  296. </div>
  297. </td>
  298. <td>
  299. <div class="rowGroup">
  300. <label class="control-label spacing td-label"><span style="color: red">*</span>专业</label>
  301. <input type="text" class="form-control" id="major" value="{$info.major}"/>
  302. </div>
  303. </td>
  304. </tr>
  305. </table>
  306. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  307. <tr>
  308. <td>
  309. <div class="rowGroup">
  310. <label class="control-label spacing td-label">是否有留学经历</label>
  311. <input type="text" class="form-control" id="study_abroad" name="study_abroad" value="{eq name='study_abroad' value='2'}否{else/}是{/eq}"/>
  312. </div>
  313. </td>
  314. <td>
  315. {if condition="$info['abroad_school']"}
  316. <div class="rowGroup abroad_need_this">
  317. <label class="control-label spacing td-label"><span style="color: red">*</span>留学毕业院校</label>
  318. <input type="text" class="form-control" id="abroad_school" value="{$info.abroad_school}" maxlength="11"/>
  319. </div>
  320. {/if}
  321. </td>
  322. <td>
  323. {if condition="$info['abroad_major']"}
  324. <div class="rowGroup abroad_need_this">
  325. <label class="control-label spacing td-label"><span style="color: red">*</span>留学专业</label>
  326. <input type="text" class="form-control" id="abroad_major" value="{$info.abroad_major}" maxlength="11"/>
  327. </div>
  328. {/if}
  329. </td>
  330. <td rowspan="3" style="width: 300%">
  331. <table class="fileTable"></table>
  332. </td>
  333. </tr>
  334. </table>
  335. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  336. <tr>
  337. <td>
  338. <div class="rowGroup">
  339. <label class=" control-label spacing td-label"><span style="color: red">*</span>引进方式</label>
  340. <input type="text" class="form-control date" id="import_way" name="import_way" value="{$info.importWayName}"/>
  341. </div>
  342. </td>
  343. <td>
  344. <div class="rowGroup">
  345. <label class="control-label spacing td-label"><span style="color: red">*</span>本单位入职时间</label>
  346. <input type="text" class="form-control date" id="cur_entry_time" value="{$info.cur_entry_time}"/>
  347. </div>
  348. </td>
  349. <td>
  350. <div class="rowGroup">
  351. <label class="control-label spacing td-label"><span style="color: red">*</span>本单位现任职务</label>
  352. <input type="text" class="form-control" id="position" value="{$info.position}"/>
  353. </div>
  354. </td>
  355. <td rowspan="3" style="width: 200%">
  356. <table class="fileTable"></table>
  357. </td>
  358. </tr>
  359. </table>
  360. <table style="width: 100%;border-collapse: collapse;" class="table table-bordered">
  361. <tr>
  362. <td>
  363. <div class="rowGroup">
  364. <label class="control-label spacing td-label">专业技术职称</label>
  365. <input type="text" class="form-control" id="professional" value="{$info.professional}"/>
  366. </div>
  367. </td>
  368. <td rowspan="3" style="width: 100%">
  369. <table class="fileTable"></table>
  370. </td>
  371. </tr>
  372. </table>
  373. <div class="col-sm-12 form-group-sm">
  374. <div class="row">
  375. <div class="col-sm-10">
  376. <div class="rowGroup col-sm-3">
  377. <label class="control-label spacing"><span style="color: red">*</span>申报来源</label>
  378. <select class="form-control" id="source" >
  379. <option value="">{$info.sourceName}</option>
  380. </select>
  381. </div>
  382. {if condition="$info['source_city']"}
  383. <div class="rowGroup col-sm-3">
  384. <label class="control-label spacing"><span style="color: red">*</span>入选来源地级市</label>
  385. <select class="form-control" id="source_city" name="source_city">
  386. <option value="">{$info.sourceCityName}</option>
  387. </select>
  388. </div>
  389. {/if}
  390. {if condition="$info['source_county']"}
  391. <div class="rowGroup col-sm-3">
  392. <label class="control-label spacing"><span style="color: red">*</span>入选来源县市区</label>
  393. <select class="form-control" id="source_county" name="source_county">
  394. <option value="">{$info.sourceCountyName}</option>
  395. </select>
  396. </div>
  397. {/if}
  398. {if condition="$info['source_batch']"}
  399. <div class="rowGroup col-sm-3">
  400. <label class=" control-label spacing" ><span style="color: red">*</span>入选名单的文件号及批次</label>
  401. <input type="text" class="form-control" id="source_batch" value="{$info.source_batch}"/>
  402. </div>
  403. {/if}
  404. {if condition="$info['fujian_highcert_pubtime']"}
  405. <div class="rowGroup col-sm-3">
  406. <label class=" control-label spacing" ><span style="color: red">*</span>福建省高层次人才证书发证日期</label>
  407. <input type="text" class="form-control date" id="fujian_highcert_pubtime" value="{$info.fujian_highcert_pubtime}"/>
  408. </div>
  409. {/if}
  410. {if condition="$info['fujian_highcert_exptime']"}
  411. <div class="rowGroup col-sm-3">
  412. <label class=" control-label spacing" ><span style="color: red">*</span>福建省高层次人才证书有效期</label>
  413. <input type="text" class="form-control date" id="fujian_highcert_exptime" value="{$info.fujian_highcert_exptime}"/>
  414. </div>
  415. {/if}
  416. {if condition="$info['quanzhou_highcert_pubtime']"}
  417. <div class="rowGroup col-sm-3">
  418. <label class=" control-label spacing" ><span style="color: red">*</span>泉州高层次人才证书发证日期</label>
  419. <input type="text" class="form-control date" id="quanzhou_highcert_pubtime" value="{$info.quanzhou_highcert_pubtime}"/>
  420. </div>
  421. {/if}
  422. {if condition="$info['quanzhou_highcert_exptime']"}
  423. <div class="rowGroup col-sm-3">
  424. <label class=" control-label spacing" ><span style="color: red">*</span>泉州高层次人才证书有效期</label>
  425. <input type="text" class="form-control date" id="quanzhou_highcert_exptime" value="{$info.quanzhou_highcert_exptime}"/>
  426. </div>
  427. {/if}
  428. <div class="rowGroup col-sm-3">
  429. <label class="control-label spacing"><span style="color: red">*</span>人才层次</label>
  430. <select class="form-control" id="talent_arrange" name="talent_arrange">
  431. <option value="">{$info.talentArrangeName}</option>
  432. </select>
  433. </div>
  434. <div class="rowGroup col-sm-3">
  435. <label class="control-label spacing"><span style="color: red">*</span>人才条款</label>
  436. <select class="form-control" id="talent_arrange_category" name="talent_arrange_category">
  437. <option value="">{$info.talentArrangeCatName}</option>
  438. </select>
  439. </div>
  440. <div class="rowGroup col-sm-3">
  441. <label class="control-label spacing"><span style="color: red">*</span>认定条件</label>
  442. <select class="form-control" id="talent_condition">
  443. <option value="{$info.talent_condition}">{$info.talentConditionName}</option>
  444. </select>
  445. </div>
  446. <div class="rowGroup col-sm-3" {if condition='!$info["annual_salary"]'}style="display:none;"{/if}>
  447. <label class="control-label spacing"><span style="color: red">*</span>年薪</label>
  448. <input type="text" class="form-control" id="annual_salary" value="{$info.annual_salary}"/>
  449. </div>
  450. </div>
  451. </div>
  452. <div class="row" style="margin-top:20px;padding:10px 25px;">
  453. 上传附件:
  454. <table class="fileTable"></table>
  455. </div>
  456. <div class="row">
  457. <div class="col-sm-10">
  458. <div class="rowGroup col-sm-3">
  459. <label class="control-label spacing"><span style="color: red">*</span>开户银行</label>
  460. <input type="text" class="form-control" onchange="" id="bank" value="{$info.bank}" placeholder="XX银行"/>
  461. </div>
  462. <div class="rowGroup col-sm-3">
  463. <label class="control-label spacing"><span style="color: red">*</span>银行行号</label>
  464. <input type="text" class="form-control" id="bank_number" value="{$info.bank_number}"/>
  465. </div>
  466. <div class="rowGroup col-sm-3">
  467. <label class="control-label spacing"><span style="color: red">*</span>开户银行网点</label>
  468. <input type="text" class="form-control" id="bank_branch_name" value="{$info.bank_branch_name}" placeholder="XX银行XX省XX市XX支行/分行/分理处"/>
  469. </div>
  470. <div class="rowGroup col-sm-3">
  471. <label class="control-label spacing"><span style="color: red">*</span>银行账号</label>
  472. <input type="text" class="form-control" id="bank_account" value="{$info.bank_account}" />
  473. </div>
  474. </div>
  475. </div>
  476. <div class="row" style="margin-top:20px;padding:10px 25px;">
  477. 上传附件:
  478. <table class="fileTable"></table>
  479. </div>
  480. </div>
  481. </div>
  482. </div>
  483. <div class="panel panel-default">
  484. <div class="panel-heading" onclick="$(this).next().toggle()">附件</div>
  485. <div class="panel-body">
  486. <table id="fileTable" class="table-condensed" style="font-size: 10px;table-layout: fixed!important;" data-mobile-responsive="true" data-click-to-select="true">
  487. <thead>
  488. <tr>
  489. <th data-field="selectItem" data-checkbox="true"></th>
  490. </tr>
  491. </thead>
  492. </table>
  493. </div>
  494. </div>
  495. <div class="panel panel-default">
  496. <div class="panel-heading" onclick="$(this).next().toggle()">日志</div>
  497. <table id="logTable">
  498. </table>
  499. </div>
  500. </div>
  501. </div>
  502. <div id="tab-2" class="tab-pane ">
  503. <label style="padding-top: 15px;color: red">*请根据上传的附件材料,编辑好相应的文件夹名称</label>
  504. </div>
  505. </div>
  506. </div>
  507. </div>
  508. </div>
  509. </div>
  510. </div>
  511. <script type="text/javascript">
  512. document.write('<script src="/static/modular/talentIdentify/talentInfo/talentInfo_common_check.js?v=' + (new Date()).getTime() + '"><\/script>');
  513. </script>
  514. {/block}