records.blade.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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('excelRecharge.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;'>充值数量</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. <th style='width:12%; text-align: center;'>操作</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. @foreach($pageList as $list)
  37. <tr>
  38. <td style="text-align: center;">{{ $list->id }}</td>
  39. <td style="text-align: center;">{{ $list->created_at }}</td>
  40. <td style="text-align: center;">{{ $list->sourceName }}</td>
  41. <td style="text-align: center;">{{ $list->total }}</td>
  42. <td style="text-align: center;">{{ $list->failure }}</td>
  43. <td style="text-align: center;">{{ $list->amount }}</td>
  44. <td style="text-align: center;">{{ $list->success }}</td>
  45. <td style="overflow:visible; text-align: center;">
  46. <a class='btn btn-default' href="{{ yzWebUrl('excelRecharge.detail.index', array('recharge_id' => $list->id)) }}" style="margin-bottom: 2px">详细记录</a>
  47. </td>
  48. </tr>
  49. @endforeach
  50. </tbody>
  51. </table>
  52. {!! $page !!}
  53. </div>
  54. </div>
  55. </div>
  56. @endsection