import_records.blade.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @extends('layouts.base')
  2. @section('title', '等级导入记录')
  3. @section('content')
  4. <link href="{{static_url('yunshop/balance/balance.css')}}" media="all" rel="stylesheet" type="text/css"/>
  5. <div id="member-blade" class="rightlist">
  6. <div class="panel panel-info">
  7. <div class="panel-heading">
  8. <span>当前位置:</span>
  9. <a href="{{ yzWebUrl('plugin.red-packet.admin.import.index') }}">
  10. <span>额度导入</span>
  11. </a>
  12. <span>>></span>
  13. <a href="#">
  14. <span>额度导入记录</span>
  15. </a>
  16. </div>
  17. </div>
  18. <div class="clearfix">
  19. <div class="panel panel-default">
  20. <div class="panel-heading">记录总数:{{ $pageList->total() }}</div>
  21. <div class="panel-body">
  22. <table class="table table-hover" style="overflow:visible;">
  23. <thead class="navbar-inner">
  24. <tr>
  25. <th style='width:12%; text-align: center;'>导入时间</th>
  26. <th style='width:12%; text-align: center;'>操作人</th>
  27. <th style='width:12%; text-align: center;'>操作IP</th>
  28. <th style='width:12%; text-align: center;'>导入数量</th>
  29. <th style='width:12%; text-align: center;'>失败数量</th>
  30. </tr>
  31. </thead>
  32. <tbody>
  33. @foreach($pageList as $list)
  34. <tr>
  35. <td style="text-align: center;">{{ $list->created_at }}</td>
  36. <td style="text-align: center;">【ID:{{ $list->admin_id }}】</td>
  37. <td style="text-align: center;">{{ $list->admin_ip }}</td>
  38. <td style="text-align: center;">{{ $list->total}}</td>
  39. <td style="text-align: center;">{{ $list->failure }}</td>
  40. </tr>
  41. @endforeach
  42. </tbody>
  43. </table>
  44. {!! $pager !!}
  45. </div>
  46. </div>
  47. </div>
  48. @endsection