|
@@ -0,0 +1,86 @@
|
|
|
+<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>
|
|
|
+ <th>房源名称</th>
|
|
|
+ <th>姓名</th>
|
|
|
+ <th>联系电话</th>
|
|
|
+ <th>证件号</th>
|
|
|
+ <th>籍贯</th>
|
|
|
+ <th>电子邮箱</th>
|
|
|
+ <th>人才层次</th>
|
|
|
+ <th>人才证有效期</th>
|
|
|
+ <th>人才标签</th>
|
|
|
+ <th>人才认定条件</th>
|
|
|
+ <th>婚姻状态</th>
|
|
|
+ <th>未年成子女数量</th>
|
|
|
+ <th>家庭成员(关系)</th>
|
|
|
+ <th>家庭成员(姓名)</th>
|
|
|
+ <th>家庭成员(证件号)</th>
|
|
|
+ <th>工作单位</th>
|
|
|
+ <th>所属街道</th>
|
|
|
+ <th>家庭住房情况</th>
|
|
|
+ <th>住房政策</th>
|
|
|
+ <th>审核状态</th>
|
|
|
+ <th>审核时间</th>
|
|
|
+ <th>审核备注</th>
|
|
|
+ </tr>
|
|
|
+ @foreach($data as $v)
|
|
|
+ <tr>
|
|
|
+ <td>{{$v['house']['name']}}</td>
|
|
|
+ <td>{{$v['name']}}</td>
|
|
|
+ <td>{{$v['mobile']}}</td>
|
|
|
+ <td>{{$v['idcard']['id_card']}}</td>
|
|
|
+ <td>{{$v['native']}}</td>
|
|
|
+ <td>{{$v['email']}}</td>
|
|
|
+ <td>{{$v['talent_level']}}</td>
|
|
|
+ <td>{{$v['talent_card_validity']}}</td>
|
|
|
+ <td>{{$v['talent_tags']}}</td>
|
|
|
+ <td>{{$v['talent_condition']}}</td>
|
|
|
+ <td>{{$v['marry_text']}}</td>
|
|
|
+ <td>{{$v['child_num']}}</td>
|
|
|
+ <td>{{$v['relation']}}</td>
|
|
|
+ <td>{{$v['relation_name']}}</td>
|
|
|
+ <td>{{$v['relation_id_card']}}</td>
|
|
|
+ <td>{{$v['company']}}</td>
|
|
|
+ <td>{{$v['street']}}</td>
|
|
|
+ <td>{{$v['house_condition']}}</td>
|
|
|
+ <td>{{$v['house_policy']}}</td>
|
|
|
+ <td>{{$v['status_text']}}</td>
|
|
|
+ <td>{{$v['check_time']}}</td>
|
|
|
+ <td>{{$v['check_comment']}}</td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ </table>
|
|
|
+</div>
|
|
|
+</body>
|
|
|
+</html>
|