| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @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/global/head_audit'>
- {{ __('auto.游戏ID:') }}
- <input type="text" class="form-control" name="GameID" value="{{ $GameID }}">
- <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="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.搜索') }}"/>
- <a href="/admin/card/game/score" class="btn btn-sm btn-gradient-warning btn-icon-text">{{ __('auto.清空') }}</a>
- </form>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th width="10%">{{ __('auto.游戏') }}ID</th>
- <th width="15%">{{ __('auto.头像') }}</th>
- <th width="15%">{{ __('auto.申请时间') }}</th>
- <th width="15%">{{ __('auto.操作') }}</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list as $k=>$v)
- <tr>
- <td>{{ $v->GameID }}</td>
- <td><img src="/{{$v->Image}}" alt="" width="60px"></td>
- <td>{{ $v->CreateTime }}</td>
- <td>
- <button class="btn btn-sm btn-success" onclick='updateStatus({{$v->UserID}},1)'>
- {{ __('auto.通过') }}
- </button>
- <button class="btn btn-sm btn-gradient-dark"
- onclick="updateStatus({{$v->UserID}},2)">{{ __('auto.拒绝') }}
- </button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <div class="box-footer clearfix">
- {{ __('auto.总共') }}
- <b>{{ $list->appends(['start_time'=>$start_time,'end_time'=>$end_time])->total() }}</b>
- {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
- {!! $list->links() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- function updateStatus(UserID,Status) {
- myRequest("/admin/global/head_audit_update/" + UserID, "post", {Status}, function (res) {
- layer.msg(res.msg)
- setTimeout(function () {
- window.location.reload();
- }, 1500)
- });
- }
- </script>
- @endsection
|