index.blade.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @extends('admin.public.base')
  2. @section('body_class')
  3. style="margin: 0 auto;width: 96%;padding: 30px 0px;"
  4. @endsection
  5. @section('content')
  6. <form action="" method="get" class="form-horizontal form-line">
  7. <div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-2" style="margin-right: 2px;">
  8. <input type="text" class="form-control" name="code" value="{{request('code','')}}" placeholder="请输入活动编码查询" />
  9. </div>
  10. <div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-2" style="margin-right: 2px;">
  11. <input type="text" class="form-control" name="old_uid_code" value="{{request('old_uid_code','')}}" placeholder="请输入客户编码查询(老)" />
  12. </div>
  13. <div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-2" style="margin-right: 2px;">
  14. <input type="text" class="form-control" name="new_uid_code" value="{{request('new_uid_code','')}}" placeholder="请输入客户编码查询(新)" />
  15. </div>
  16. <div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-2" style="margin-right: 2px;">
  17. <input type="date" class="form-control" name="start_time" value="{{request('start_time','')}}" placeholder="请输入创建时间查询" />
  18. </div>
  19. <div class="form-group col col-lg-2 col-md-2 col-sm-2 col-xs-2" style="margin-right: 2px;">
  20. <input type="date" class="form-control" name="end_time" value="{{request('end_time','')}}" placeholder="请输入结束查询" />
  21. </div>
  22. <input type="submit" class="btn btn-sm btn-primary" value="查询"/>
  23. <a href="{{url('admin/recruitment_record/index')}}" class="btn btn-sm btn-default" >重置</a>
  24. </form>
  25. <div class="row">
  26. <div class="col-xs-12">
  27. <div class="table-responsive">
  28. <table class="table table-striped table-bordered table-hover">
  29. <thead>
  30. <tr>
  31. <th>活动编码</th>
  32. <th>活动名称</th>
  33. <th>客户编码(老)</th>
  34. <th>客户昵称(老)</th>
  35. <th>客户编码(新)</th>
  36. <th>客户昵称(新)</th>
  37. <th>账号创建时间(新)</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. @foreach ($list as $a)
  42. <tr>
  43. <th>{{$a['active_id_code']}}</th>
  44. <td>{{$a['active_name']}}</td>
  45. <td>{{$a['old_uid_code']}}</td>
  46. <td>{{$a['old_name']}}</td>
  47. <td>{{$a['new_uid_code']}}</td>
  48. <td>{{$a['new_name']}}</td>
  49. <td> {{date('Y/m/d H:i:s',$a['insert_time'])}}</td>
  50. </tr>
  51. @endforeach
  52. <tr>
  53. <td colspan="20" class="page">{{$list->render()}}</td>
  54. </tr>
  55. <tr>
  56. <td colspan="20">总计 {{$list->total()}} 个商店</td>
  57. </tr>
  58. </tbody>
  59. </table>
  60. </div>
  61. </div>
  62. </div>
  63. @endsection