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