| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- @extends('base.base')
- @section('base')
- <!-- 内容区域 -->
- <div class="main-panel">
- <div class="content-wrapper">
- <div class="page-header">
- <h3 class="page-title">
- <span class="page-title-icon bg-gradient-primary text-white mr-2">
- <i class="mdi mdi-settings"></i>
- </span>
- {{ __('auto.绑定关系查询') }}
- </h3>
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="#">{{ __('auto.绑定关系查询') }}</a></li>
- <li class="breadcrumb-item active" aria-current="page">{{ __('auto.绑定关系查询') }}</li>
- </ol>
- </nav>
- </div>
- @if ($source == 2)
- <a href="/admin/extension/verify?start_time={{$start_time}}&end_time={{$end_time}}&GameID={{$GameID}}&SpreaderID={{$SpreaderID}}&NickName={{$NickName}}&Type={{$Type}}&Sort={{$Sort}}&FinalScoreSort={{$FinalScoreSort}}">{{ __('auto.返回上一页') }}</a>
- @else
- <a href="/admin/user/bind_list">{{ __('auto.返回上一页') }}</a>
- @endif
- <div class="row">
- <div class="col-lg-12 grid-margin stretch-card">
- <div class="card">
- <div class="card-body">
- <h4 class="card-title">{{ __('auto.绑定关系查询') }}</h4>
- <form class="well form-inline margin-top-20" method="get" action='/admin/user/bind_list'>
- <spen style="padding-left: 10px" >{{ __('auto.选择时间:') }}</spen>
- <input type="date" step="01" name="start_time" class="form-control" value="{{$start_time}}" />
- <input type="date" step="01" name="end_time" class="form-control" value="{{$end_time}}" />
- <input type="hidden" name="Higher1ID" value="{{$Higher1ID}}">
- <input type="hidden" name="Higher2ID" value="{{$Higher2ID}}">
- <input type="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.搜索') }}"/>
- </form>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th width="5%">{{ __('auto.会员') }}ID</th>
- <th width="8%">TA{{ __('auto.的上级') }}ID</th>
- <th width="8%">{{ __('auto.已发放额度') }}</th>
- <th width="8%">{{ __('auto.账号创建时间') }}</th>
- <th width="8%">{{ __('auto.最后登录时间') }}</th>
- <th width="8%">{{ __('auto.所有下级人数') }}</th>
- <th width="8%">{{ __('auto.直属下级') }}</th>
- <th width="8%">{{ __('auto.下下级') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k=>$v)
- <tr>
- <td>
- <a href="/admin/global/id_find?UserID={{$v->UserID}}">
- {{$v->GameID}}
- </a>
- </td>
- <td>{{ $v->SpreaderID }}</td>
- <td>{{ $v->Rewards }}</td>
- <td>{{$v->RegisterDate}}</td>
- <td>{{ $v->LastLogonDate }}</td>
- <td>{{$v->downCount1 + $v->downCount2}}</td>
- <td>
- @if ($v->downCount1 > 0)
- <a href="/admin/user/bind_list?Higher1ID={{$v->UserID}}">
- {{$v->downCount1}}
- </a>
- @else
- {{$v->downCount1}}
- @endif
- </td>
- <td>
- @if ($v->downCount2 > 0)
- <a href="/admin/user/bind_list?Higher2ID={{$v->UserID}}">
- {{$v->downCount2}}
- </a>
- @else
- {{$v->downCount2}}
- @endif
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix">
- {{ __('auto.总共') }} <b>{{ $list->appends([
- 'start_time' => $start_time,
- 'end_time' => $end_time,
- 'UserID' => $UserID,
- 'SpreaderID' => $SpreaderID,
- 'Higher1ID' => $Higher1ID,
- 'Higher2ID' => $Higher2ID,
- 'source' => $source ?? 0
- ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function supplement(id){
- myConfirm("{{ __('auto.操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/recharge/supplement/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
- $(function(){
- cutStr(50);
- });
- function update(id){
- myConfirm("{{ __('auto.处理操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/accusation/edit/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
- function del(id){
- myConfirm("{{ __('auto.删除操作不可逆,是否继续') }}?",function(){
- myRequest("/admin/accusation/del/"+id,"post",{},function(res){
- layer.msg(res.msg)
- setTimeout(function(){
- window.location.reload();
- },1500)
- });
- });
- }
- </script>
- @endsection
|