records.blade.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.import-members.Backend.Modules.Subsidiary.Controllers.page.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:6%; text-align: center;'>主键ID</th>
  26. <th style='width:12%; text-align: center;'>导入时间</th>
  27. <th style='width:12%; text-align: center;'>操作人</th>
  28. <th style='width:12%; text-align: center;'>操作IP</th>
  29. <th style='width:12%; text-align: center;'>导入数量</th>
  30. <th style='width:12%; text-align: center;'>失败数量</th>
  31. <th style='width:12%; text-align: center;'>操作</th>
  32. </tr>
  33. </thead>
  34. <tbody>
  35. @foreach($pageList as $list)
  36. <tr>
  37. <td style="text-align: center;">{{ $list->id }}</td>
  38. <td style="text-align: center;">{{ $list->created_at }}</td>
  39. <td style="text-align: center;">{{ $list->user->username }}【ID:{{ $list->admin_id }}】</td>
  40. <td style="text-align: center;">{{ $list->admin_ip }}</td>
  41. <td style="text-align: center;">{{ $list->total}}</td>
  42. <td style="text-align: center;">{{ $list->failure }}</td>
  43. <td style="overflow:visible; text-align: center;">
  44. <a class='btn btn-default' href="{{ yzWebUrl('plugin.import-members.Backend.Modules.Subsidiary.Controllers.detail.index', array('import_id' => $list->id)) }}" style="margin-bottom: 2px">详细记录</a>
  45. </td>
  46. </tr>
  47. @endforeach
  48. </tbody>
  49. </table>
  50. {!! $page !!}
  51. </div>
  52. </div>
  53. </div>
  54. @endsection