123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- @extends('module.layouts.content')
- @push('meta')
- @endpush
- @push('css')
- <link href="{{ theme_asset('app/css/common.css') }}?t=20210616" rel="stylesheet">
- <link href="{{theme_asset('app/css/recruit/recruit.css')}}?t=20210616" rel="stylesheet" type="text/css"/>
- <link href="{{theme_asset('app/css/recruit/apply_show.css')}}?t=20210616" rel="stylesheet" type="text/css"/>
- <link href="{{theme_asset('app/css/common_ajax_dialog.css')}}?t=20210616" rel="stylesheet"/>
- <style>
- .right_nav_li ul li {
- height: 30px;
- line-height: 30px;
- font-size: 17px;
- }
- </style>
- @endpush
- @push('js')
- @endpush
- @section('content')
- <div class="recruit_container clearfix">
- <div class="recruit_show_content" style="margin-top: 10px;width: 100%">
- <div class="title">报名人数统计</div>
- <div class="time" style="text-align: center;line-height: 80px;font-size: 30px;">
- 更新时间:{{ $time }}
- </div>
- </div>
- <div class="recruit_content" style="margin-top: 20px;">
- <table class="tb01">
- <thead>
- <tr>
- <th>
- 岗位
- </th>
- <th>
- 招聘人数
- </th>
- <th>
- 总报名数
- </th>
- <th>
- 审核通过
- </th>
- <th>
- 未审核
- </th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k => $v)
- <tr>
- <td>{{ $v->code }}岗 {{ $v->name }}</td>
- <td>{{ $v->number }}</td>
- <td>{{ $v->checking + $v->fail + $v->success }}</td>
- <td>{{ $v->success }}</td>
- <td>{{ $v->checking }}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- @endsection
- @section('script')
- @endsection
|