export_apply.blade.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <html xmlns:o="urn:schemas-microsoft-com:office:office"
  2. xmlns:x="urn:schemas-microsoft-com:office:excel"
  3. xmlns="http://www.w3.org/TR/REC-html40">
  4. <head>
  5. <meta http-equiv=Content-Type content="text/html; charset=utf-8">
  6. <meta name=ProgId content=Excel.Sheet>
  7. <meta name=Generator content="Microsoft Excel 15">
  8. <style>
  9. table {
  10. mso-displayed-decimal-separator: "\.";
  11. mso-displayed-thousand-separator: "\,";
  12. }
  13. .title {
  14. font-weight:700;
  15. font-size:20px;
  16. text-align: center;
  17. }
  18. th {
  19. color:red;
  20. }
  21. td {
  22. text-align: center;
  23. vnd.ms-excel.numberformat:@;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div align=center x:publishsource="Excel">
  29. <table border=1 cellpadding=0 cellspacing=0 style='border-collapse:collapse;table-layout:fixed;'>
  30. <tr>
  31. <td colspan=12 class=title>{{$data['title']}}</td>
  32. </tr>
  33. <tr>
  34. <th>姓名</th>
  35. <th>身份证</th>
  36. <th>联系电话</th>
  37. <th>个人微信号</th>
  38. <th>工作单位</th>
  39. <th>人才层次</th>
  40. <th>适用对象类型</th>
  41. <th>{{date('Y',strtotime("-1 year"))}}年在晋江连续缴纳社保和个税</th>
  42. <th>年工资是否超过130336元</th>
  43. <th>报名时间</th>
  44. <th>审核状态</th>
  45. <th>审核备注</th>
  46. </tr>
  47. @foreach($data['list'] as $v)
  48. <tr>
  49. <td>{{$v['user_name']}}</td>
  50. <td>{{$v['user_idcard']}}</td>
  51. <td>{{$v['mobile']}}</td>
  52. <td>{{$v['wechat']}}</td>
  53. <td>{{$v['company_name']}}</td>
  54. <td>{{$v['level']}}</td>
  55. <td>{{$v['condition']}}</td>
  56. <td>{{$v['tax'] == 1 ? "是" : '否'}}</td>
  57. <td>{{$v['salary'] == 1 ? "是" : '否'}}</td>
  58. <td>{{$v['created_at']}}</td>
  59. <td>{{$v['status']}}</td>
  60. <td>{{$v['reason']}}</td>
  61. </tr>
  62. @endforeach
  63. <tr>
  64. <td colspan="12">
  65. 1、海内外高等院校、科研院所或中央企业、跨国公司在我市设立的直属研发公共服务平台引进的优秀人才;<br style='mso-data-placement:same-cell;'/>
  66. 2、落址在我市的高等院校引进的优秀人才;<br style='mso-data-placement:same-cell;'/>
  67. 3、在我市登记注册的民营企业引进的优秀人才;<br style='mso-data-placement:same-cell;'/>
  68. 4、2011年4月23日之后引进到我市公办医疗卫生机构工作,且优秀人才认定条件证书取得时间早于我市开具的《干部行政介绍信》;<br style='mso-data-placement:same-cell;'/>
  69. 5、在我市登记注册的媒体单位(含事业单位、国有控股媒体单位)引进的优秀人才;<br style='mso-data-placement:same-cell;'/>
  70. 6、近三年内引进到我市民办非企业单位工作的优秀人才;<br style='mso-data-placement:same-cell;'/>
  71. 7、近三年内引进到我市本级国有股比超过50%的国有企业工作的优秀人才;<br style='mso-data-placement:same-cell;'/>
  72. 8、近三年内引进到我市依法登记的事业单位(医疗教育除外)工作的优秀人才。<br style='mso-data-placement:same-cell;'/>
  73. 9、晋江市博士后科研工作站在站博士后。
  74. </td>
  75. </tr>
  76. </table>
  77. </div>
  78. </body>
  79. </html>