| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- @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>
- <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/daily_binding'>
- <spen style="padding-left: 10px" >{{ __('auto.选择注册时间:') }}</spen>
- <input type="datetime-local" step="01" name="start_time" class="form-control" value="{{$start_time}}" id="start_time" onclick="start_times()"/>
- <input type="datetime-local" step="01" name="end_time" class="form-control" value="{{$end_time}}" id="end_time" onclick="end_times()"/>
- <spen style="padding-left: 10px" >{{ __('auto.会员ID:') }}</spen>
- <input class="form-control" type="text" name="GameID" style="width: 10%; " value="{{$GameID}}" >
- <spen style="padding-left: 10px" >{{ __('auto.上级ID:') }}</spen>
- <input class="form-control" type="text" name="SpreaderID" style="width: 10%; " value="{{$spreaderID}}" >
- <span>{{ __('auto.选择创建时间') }}</span>
- <select name="date" id="" class="form-control">
- <option value="">{{ __('auto.请选择') }}</option>
- @foreach($dates as $key=>$val)
- <option value="{{$key}}" @if ("$date" == $key)
- selected
- @endif>{{$val}}</option>
- @endforeach
- </select>
- <input type="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.搜索') }}"/>
- <a href="/admin/user/daily_binding" class="btn btn-sm btn-gradient-warning btn-icon-text">{{ __('auto.清空') }}</a>
- {{-- <a href="/admin/recharge/list?excel=1&start_time={{$start_time}}&end_time={{$end_time}}&type={{$type}}&order={{$order}}" class="btn btn-sm btn-gradient-light btn-icon-text">{{ __('auto.导出') }}</a>--}}
- </form>
- <h3>{{ __('auto.累计裂变新增人数:') }}{{$list->total()}}</h3>
- <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>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k=>$v)
- <tr>
- <td>
- <a href="/admin/global/id_find?UserID={{$v->UserID}}">
- {{$v->GameID}}
- </a>
- </td>
- <td>
- <a href="/admin/global/id_find?UserID={{$v->ai1UserID}}">
- {{ $v->SpreaderID }}
- </a>
- </td>
- <td>{{$v->RegisterDate}}</td>
- <td>{{ $v->LastLogonDate }}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix">
- {{ __('auto.总共') }} <b>{{ $list->appends([
- 'start_time' => $start_time,
- 'end_time' => $end_time,
- 'GameID' => $GameID,
- 'SpreaderID' => $spreaderID,
- 'date' => $date
- ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function start_times() {
- getFormat('00', '00', '00');
- document.getElementById("start_time").value = format
- }
- function end_times() {
- getFormat('23', '59', '59');
- document.getElementById("end_time").value = format
- }
- 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
|