queue.blade.php 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @extends('layouts.base')
  2. @section('content')
  3. <link href="{{static_url('yunshop/balance/balance.css')}}" media="all" rel="stylesheet" type="text/css"/>
  4. <div id="member-blade" class="rightlist">
  5. <!-- 新增加右侧顶部三级菜单 -->
  6. <div class="right-titpos">
  7. @include('layouts.tabs')
  8. </div>
  9. <!-- 新增加右侧顶部三级菜单结束 -->
  10. <div class="panel panel-info">
  11. <div class="panel-heading">筛选</div>
  12. <div class="panel-body">
  13. <form action="" method="post" class="form-horizontal" role="form" id="form1">
  14. <div class="form-group col-sm-11 col-lg-11 col-xs-12">
  15. <div class="">
  16. <div class='input-group'>
  17. <input class="form-control" name="search[queue_id]" type="text" value="{{ $search['queue_id'] ?? ''}}" placeholder="队列ID">
  18. <input class="form-control" name="search[uid]" type="text" value="{{ $search['uid'] ?? ''}}" placeholder="会员ID">
  19. <input class="form-control" name="search[member]" type="text" value="{{ $search['member'] ?? ''}}" placeholder="会员姓名/昵称/手机号">
  20. </div>
  21. </div>
  22. </div>
  23. <div class="form-group col-sm-1 col-lg-1 col-xs-12">
  24. <div class="">
  25. <input type="submit" class="btn btn-block btn-success" value="搜索">
  26. </div>
  27. </div>
  28. </form>
  29. </div>
  30. </div>
  31. <div class="clearfix">
  32. <div class="panel panel-default">
  33. <div class="panel-heading">总数:{{ $list->total() }}</div>
  34. <div class="panel-body">
  35. <table class="table table-hover" style="overflow:visible;">
  36. <thead class="navbar-inner">
  37. <tr>
  38. <th style='width:8%; text-align: center;'>ID</th>
  39. <th style='width:16%; text-align: center;'>充值时间</th>
  40. <th style='width:16%; text-align: center;'>会员ID</th>
  41. <th style='width:16%; text-align: center;'>粉丝</th>
  42. <th style='width:16%; text-align: center;'>订单编号</th>
  43. <th style='width:8%; text-align: center;'>赠送总数量</th>
  44. <th style='width:8%; text-align: center;'>已赠送数量</th>
  45. <th style='width:8%; text-align: center;'>剩余数量</th>
  46. <th style='width:8%; text-align: center;'>单次赠送数量</th>
  47. <th style='width:8%; text-align: center;'>最后一次</br>赠送数量</th>
  48. <th style='width:8%; text-align: center;'>状态</th>
  49. </tr>
  50. </thead>
  51. <tbody>
  52. @foreach($list as $item)
  53. <tr style="text-align: center;">
  54. <td>{{ $item->id }}</td>
  55. <td>{{ $item->created_at }}</td>
  56. <td>{{ $item->uid }}</td>
  57. <td>
  58. <a href="{!! yzWebUrl('member.member.detail', ['id'=>$item->uid]) !!}"><img src="{{$item->member->avatar}}" style="width:30px;height:30px;padding:1px;border:1px solid #ccc"><BR>{{$item->member->nickname}}</a>
  59. </td>
  60. <td>
  61. <a target="_blank"
  62. href="{{yzWebUrl('order.detail',['id' => $item->order_id])}}">
  63. {{$item->order->order_sn}}
  64. </a>
  65. </td>
  66. <td>{{ $item->point_total }}</td>
  67. <td>{{ $item->finish_point }}</td>
  68. <td>{{ $item->surplus_point }}</td>
  69. <td>{{ $item->once_unit }}</td>
  70. <td>{{ $item->last_point }}</td>
  71. <td>{{ $item->status_name }}</td>
  72. </tr>
  73. @endforeach
  74. </tbody>
  75. </table>
  76. {!! $pager !!}
  77. </div>
  78. </div>
  79. </div>
  80. @endsection