sign_up_count.blade.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. @extends('module.layouts.content')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('app/css/common.css') }}?t=20210616" rel="stylesheet">
  6. <link href="{{theme_asset('app/css/recruit/recruit.css')}}?t=20210616" rel="stylesheet" type="text/css"/>
  7. <link href="{{theme_asset('app/css/recruit/apply_show.css')}}?t=20210616" rel="stylesheet" type="text/css"/>
  8. <link href="{{theme_asset('app/css/common_ajax_dialog.css')}}?t=20210616" rel="stylesheet"/>
  9. <style>
  10. .right_nav_li ul li {
  11. height: 30px;
  12. line-height: 30px;
  13. font-size: 17px;
  14. }
  15. </style>
  16. @endpush
  17. @push('js')
  18. @endpush
  19. @section('content')
  20. <div class="recruit_container clearfix">
  21. <div class="recruit_show_content" style="margin-top: 10px;width: 100%">
  22. <div class="title">报名人数统计</div>
  23. <div class="time" style="text-align: center;line-height: 80px;font-size: 30px;">
  24. 更新时间:{{ $time }}
  25. </div>
  26. </div>
  27. <div class="recruit_content" style="margin-top: 20px;">
  28. <table class="tb01">
  29. <thead>
  30. <tr>
  31. <th>
  32. 岗位
  33. </th>
  34. <th>
  35. 招聘人数
  36. </th>
  37. <th>
  38. 总报名数
  39. </th>
  40. <th>
  41. 审核通过
  42. </th>
  43. <th>
  44. 未审核
  45. </th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. @foreach($list as $k => $v)
  50. <tr>
  51. <td>{{ $v->code }}岗 {{ $v->name }}</td>
  52. <td>{{ $v->number }}</td>
  53. <td>{{ $v->checking + $v->fail + $v->success }}</td>
  54. <td>{{ $v->success }}</td>
  55. <td>{{ $v->checking }}</td>
  56. </tr>
  57. @endforeach
  58. </tbody>
  59. </table>
  60. </div>
  61. </div>
  62. @endsection
  63. @section('script')
  64. @endsection