export_house_apply.blade.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <th>序号</th>
  32. <th>房源名称</th>
  33. <th>姓名</th>
  34. <th>联系电话</th>
  35. <th>证件号</th>
  36. <th>籍贯</th>
  37. <th>电子邮箱</th>
  38. <th>人才层次</th>
  39. <th>人才证有效期</th>
  40. <th>人才标签</th>
  41. <th>人才认定条件</th>
  42. <th>婚姻状态</th>
  43. <th>未年成子女数量</th>
  44. <th>家庭成员(关系)</th>
  45. <th>家庭成员(姓名)</th>
  46. <th>家庭成员(证件号)</th>
  47. <th>工作单位</th>
  48. <th>所属街道</th>
  49. <th>家庭住房情况</th>
  50. <th>住房政策</th>
  51. <th>审核状态</th>
  52. <th>审核时间</th>
  53. <th>审核备注</th>
  54. </tr>
  55. @foreach($data as $v)
  56. <tr>
  57. <td>{{$v['no']}}</td>
  58. <td>{{$v['house']['name']}}</td>
  59. <td>{{$v['name']}}</td>
  60. <td>{{$v['mobile']}}</td>
  61. <td>{{$v['idcard']['id_card']}}</td>
  62. <td>{{$v['native']}}</td>
  63. <td>{{$v['email']}}</td>
  64. <td>{{$v['talent_level']}}</td>
  65. <td>{{$v['talent_card_validity']}}</td>
  66. <td>{{$v['talent_tags']}}</td>
  67. <td>{{$v['talent_condition']}}</td>
  68. <td>{{$v['marry_text']}}</td>
  69. <td>{{$v['child_num']}}</td>
  70. <td>{{$v['relation']}}</td>
  71. <td>{{$v['relation_name']}}</td>
  72. <td>{{$v['relation_id_card']}}</td>
  73. <td>{{$v['company']}}</td>
  74. <td>{{$v['street']}}</td>
  75. <td>{{$v['house_condition']}}</td>
  76. <td>{{$v['house_policy']}}</td>
  77. <td>{{$v['status_text']}}</td>
  78. <td>{{$v['check_time']}}</td>
  79. <td>{{$v['check_comment']}}</td>
  80. </tr>
  81. @endforeach
  82. </table>
  83. </div>
  84. </body>
  85. </html>