|
@@ -0,0 +1,47 @@
|
|
|
+@extends('module.layouts.content')
|
|
|
+
|
|
|
+@push('meta')
|
|
|
+
|
|
|
+@endpush
|
|
|
+
|
|
|
+@push('css')
|
|
|
+ <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
|
|
|
+ <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/article/article.css') }}"/>
|
|
|
+ <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/recruit/recruit.css') }}"/>
|
|
|
+@endpush
|
|
|
+
|
|
|
+@push('js')
|
|
|
+
|
|
|
+@endpush
|
|
|
+
|
|
|
+@section('content')
|
|
|
+ <div class="content" style="width: 1200px;margin: 0 auto;padding: 20px 0">
|
|
|
+ <table width="100%" border="10" align="center" cellpadding="0" cellspacing="0">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th height="60">
|
|
|
+ 序号
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ 姓名
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ 手机
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ 备注
|
|
|
+ </th>
|
|
|
+ </tr>
|
|
|
+ @foreach($list as $k => $v)
|
|
|
+ <tr>
|
|
|
+ <td height="60" align="center">{{ $k + 1 }}</td>
|
|
|
+ <td align="center">{{ $v->realname }}</td>
|
|
|
+ <td align="center">{{ $v->mobile }}</td>
|
|
|
+ <td align="center">@if($k>($num-1)) 替补 @endif</td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ </thead>
|
|
|
+ </table>
|
|
|
+ <div class="clear"></div>
|
|
|
+ </div>
|
|
|
+@endsection
|